讀取資料庫名及表與表中的字段

2021-04-01 18:36:30 字數 573 閱讀 7005

選擇乙個伺服器後,列出該伺服器中所有資料庫:

select * from master.dbo.sysdatabases;

選擇乙個庫後讀該庫中表:

select * from dbo.sysobjects where objectproperty(id, n'isusertable') = 1;

列出表中的字段:

select c.name as columnname, c.colorder as columnorder, c.xtype as datatype, typ.name as datatypename, c.length, c.isnullable from dbo.syscolumns c inner join dbo.sysobjects t

on c.id = t.id

inner join dbo.systypes typ on typ.xtype = c.xtype

where objectproperty(t.id, n'isusertable') = 1

and t.name='" + tablename + "' order by c.colorder";

sql查詢資料庫注釋(表及表注釋,欄位及字段注釋)

1.要查詢資料庫下所有表名以及表注釋 查詢資料庫 mammothcode 所有表注釋 select table name,table comment from information schema.tables where table schema mammothcode 2.要查詢表字段的注釋 查...

獲取資料庫所有表名與欄位名

1.獲取所有資料庫名 select name from master.sysdatabases 2.獲取所有表名 select name from sysobjects where type u xtype u 表示所有使用者表 xtype s 表示所有系統表 3.獲取所有欄位名 select na...

WordPress資料庫表及字段詳解

今天熊哥在朋友的部落格看到關於wordpress資料庫的介紹,感覺很有用,相信對同樣在使用wordpress的同學也很有用,所以就拿過來分享一下。希望對自己和大家有所幫助。廢話 記得剛接觸 時對資料庫一點概念也沒有,那時公司 要換伺服器,於是就單純的轉移了 檔案,結果可想而知。一翻折騰,在糊里糊塗中...