1. 程式人生 > >Oracle、Mysql、Sqlserver資料庫中查詢表中所有的欄位

Oracle、Mysql、Sqlserver資料庫中查詢表中所有的欄位

有時候,我們需要獲取資料庫中一個表裡所有的欄位。對此,我進行了一些總結。

1.Mysql資料庫

select GROUP_CONCAT(COLUMN_NAME) from information_schema.COLUMNS where table_name = '表名' and table_schema ='資料庫名';

2.Sqlserver資料庫

 exec sp_columns 表名

3.Oracle資料庫

desc 表名