MSSQL 查詢資料庫表資訊及表字段的詳細資訊

2021-06-04 17:45:26 字數 1637 閱讀 7549

這幾天正忙著寫個資料庫的幫助軟體,需要查詢資料庫欄位的詳細資訊,從網上找了下資料,有人已經寫的很全了,摘錄下來以後備用啊~~

這個語句是查詢當前資料庫全部表的字段資訊。

select 

(case when a.colorder=1 then d.name 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 sysproperties g

on a.id=g.id and a.colid = g.smallid

order by object_name(a.id),a.colorder

可根據需要,增加where  d.name='tablename' 來過濾具體表。

另記錄查詢資料庫所有表名的簡單語句:

select * from information_schema.tables order by table_type,table_name

可查詢表名及檢視名,語句按照型別(即表和檢視),名字排序。

查詢資料庫鎖表資訊

查詢資料庫鎖表資訊 create proc dbo sp lockinfo kill lock spid bit 0,是否殺掉死鎖的程序 1 殺掉 0 僅顯示 show spid if nolock bit 0 如果沒有死鎖的程序,是否顯示正常的 1 顯示 0 不顯示 asset nocount o...

資料庫 oracle查詢表資訊

修改資料庫中一張表指定欄位的資料,該字段在其他表中也存在,需要同步修改 此時需要統計資料庫中所有包含該字段的表。獲取表字段 select from user tab columns where table name 使用者表 獲取表注釋 select from user tab comments w...

查詢資料庫中有哪些表及這些表的資訊

select case when a.colorder 1 then d.name else end n 表名 a.colorder n 字段序號 a.name n 欄位名 case when columnproperty a.id,a.name,isidentity 1 then else end...