sql 查詢資料庫表結構

2022-09-19 16:27:13 字數 1126 閱讀 6204

1

--查詢非系統資料庫

2select name from master.. sysdatabases where dbid>43

4--選擇water資料庫下的所有表

5use

[water

]select name from sysobjects where xtype ='u

'or xtype ='s

'67--

選擇water資料庫下的所有使用者表

8use

[water

]select name from sysobjects where xtype ='u

'and

objectproperty (id, '

ismsshipped

') =09

10--

查詢water資料庫下的admin表的欄位名,長度,型別,字段說明

11use

[water

]select a.[

name]as

'欄位名

',a.length '

長度',c.[

name]'

型別',e.value as

'字段說明

'from

syscolumns a

12left

join systypes b on a.xusertype=

b.xusertype

13left

join systypes c on a.xtype =

c.xusertype

14inner

join sysobjects d on a.id=d.id and d.xtype='u

'15left

join sys.extended_properties e on a.id = e.major_id and a.colid = e.minor_id and e.name=

'ms_description'16

where d.name=

'admin

'

**:

sql語句查詢資料庫表結構資訊

開發中經常用到查詢指定表及其欄位的資訊,以下是我整理的sql語句查詢方法,供自己平時使用也提供給大家參考!1.適用ms sql server 1 select 2 表名 case when a.colorder 1 then d.name else end,3 表說明 case when a.col...

查詢mysql資料庫結構sql

mysql資料庫中的自有資料庫 information schema 包含了所有資料庫的資料,其中 columns 表包含了資料庫中所有表的所有欄位的資訊,一下是乙個查詢database資料庫中table1表的資料sql select column name 列名,data type 字段型別 ch...

查詢資料庫鎖表sql

此儲存過程執行完可以看到資料庫鎖表情況 create procedure sp who lock asbegin declare spid int bl int inttransactioncountonentry int introwcount int intcountproperties int...