SQL中查詢資料表字段名稱的查詢語句

2021-04-17 05:56:08 字數 893 閱讀 6865

以下為在sql server中檢視某個表的字段資訊的查詢語句(以資料庫pubs的jobs表為例) select     sysobjects.name as tablename,     

syscolumns.name as columnsname,     

systypes.name as datetype,     

syscolumns.length as datelength,     

sysproperties.value as remark     --列描述     

from       sysobjects,     

systypes,     

syscolumns     

left  join     sysproperties         

on     (syscolumns.id     =     sysproperties.id     and     syscolumns.colid     =     sysproperties.**allid)     

where             (sysobjects.xtype     ='u'     or     sysobjects.xtype     ='v')     

and     sysobjects.id     =     syscolumns.id     

and     systypes.xtype     =     syscolumns.xtype     

and     systypes.name     <>     'sysname'   

and    sysobjects.name    = 'jobs'

如果需要查詢整個資料庫的所有表的話,就把最後哪個條件去掉即可。

查詢oracle表字段名稱

select column name,data type,data length from all tab columns where table name t cakey select from user tables 查詢當前使用者所擁有的表 select from dba tables 擁有d...

SQL 語句獲取表字段名稱,屬性

獲取表字段名稱,屬性 select 表名 case when a.colorder 1 then d.name else end 表說明 case when a.colorder 1 then isnull f.value,else end 字段序號 a.colorder,欄位名 a.name,標識...

mysql 檢視資料表結構,查詢資料表欄位名

describe命令 一 describe命令用於檢視特定表的詳細設計資訊,例如為了檢視guestbook表的設計資訊,可用 describe guestbook describe ol user userid 二 可通過 show comnus 來檢視資料庫中表的列名,有兩種使用方式 show c...