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