在SQL Server中
每一個database裡都有一個系統所產生的table
sysobjects這一個table中記錄了database中所有的table名稱
我們可以用下面的SQL語法作查詢的動作
復制代碼 代碼如下:
Select Name,id from sysobjects where xtype = 'U'
其中xtype='U'代表使用的table,若是使用xtype='S'
則代表系統預設的table
在系統table中還有一個名叫syscolumns的table
他記錄了欄位的資料
若是想要找出某一個table的欄位相關資料,可以用下面的SQL語法..
復制代碼 代碼如下:
Select Name from syscolumns where id in (Select id from sysobjects where name= '
Table_name' and xtype='U')