在SQL Server中
每一個(gè)database裡都有一個(gè)系統(tǒng)所產(chǎn)生的table
sysobjects這一個(gè)table中記錄了database中所有的table名稱
我們可以用下面的SQL語(yǔ)法作查詢的動(dòng)作
復(fù)制代碼 代碼如下:
Select Name,id from sysobjects where xtype = 'U'
其中xtype='U'代表使用的table,若是使用xtype='S'
則代表系統(tǒng)預(yù)設(shè)的table
在系統(tǒng)table中還有一個(gè)名叫syscolumns的table
他記錄了欄位的資料
若是想要找出某一個(gè)table的欄位相關(guān)資料,可以用下面的SQL語(yǔ)法..
代碼如下:
Select Name from syscolumns where id in (Select id from sysobjects where name= '
Table_name' and xtype='U')
更多信息請(qǐng)查看IT技術(shù)專欄