1. 程式人生 > >Sql 查詢庫、表、列名的語句

Sql 查詢庫、表、列名的語句

 

查詢庫名
Select Name FROM Master..SysDatabases order by Name

查詢News庫的所有表名
Select Name from News..sysobjects where xtype='u' order by name

查詢T_News_Class表的所有欄位名 及欄位型別
select column_name,data_type from information_schema.columns where table_name  ='T_News_Class'