查詢庫名 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'