是基於別人的 mssql2000資料庫改的.因為公升級到2005以後,有些表結構改了.
select
(case when a.colorder=1 then d.name else '' end) n'表名',
(case when a.colorder=1 then d.crdate else '' end) n'建立時間',
a.colorder n'字段序號',
a.name n'欄位名',
(case when columnproperty( a.id,a.name,'isidentity')=1 then '√'else '' end) n'標識',
(case when (select count(*)
from sysobjects
where (name in
(select name
from sysindexes
where (id = a.id) and (indid in
(select indid
from sysindexkeys
where (id = a.id) and (colid in
(select colid
from syscolumns
where (id = a.id) and (name = a.name))))))) and
(xtype = 'pk'))>0 then '√' else '' end) n'主鍵',
b.name n'型別',
a.length n'占用位元組數',
columnproperty(a.id,a.name,'precision') as n'長度',
isnull(columnproperty(a.id,a.name,'scale'),0) as n'小數字數',
(case when a.isnullable=1 then '√'else '' end) n'允許空',
isnull(e.text,'') n'預設值',
isnull(g.[value],'') as n'字段說明'
from syscolumns a --取得列名
left join systypes b on a.xtype=b.xusertype --取得型別
inner join sysobjects d on a.id=d.id and d.xtype='u' and d.name<>'dtproperties' --取得表名
left join syscomments e on a.cdefault=e.id --預設值表
left join sys.extended_properties g on a.id=g.major_id and a.colid=g.minor_id --欄位說明
--where
--d.name = @tablename --要查詢的表
order by
object_name(a.id), a.colorder
MSSQL2005查詢表中字段的描述
自定義查詢的功能是使用者可以選擇資料庫中表和表中的字段,但一般欄位都使用英文本元表示,這樣對於使用者來說根本無法理解表中字段的含義,解決辦法一般有兩種 1.向資料庫中增加兩個表,乙個存放庫中的資料表,另乙個對應表中的字段。使用時只要增加相關的表和字段的條目和注釋就可以了。2.另一種方法是從資料庫中查...
查詢表的欄位名
select name from syscolumns where id in select id from sysobjects where type u and name 相應表名 用以上sql語句輸入相應表名就可以查到表的欄位名,對應好資料庫 查詢是否存在該錶語句 if exists sele...
MSSQL列出庫裡面的所有表名和欄位名
use 資料庫 select a.name as 表名,b.name as 欄位名,b.length as 字段長度,c.name 字段型別 from select from sysobjects where xtype u a join syscolumns b on a.id b.id left...