[MSSQL、PostgreSQL]列出資料表的欄位與資料型態
[PostgreSQL]
SELECT column_name, data_type from information_schema.columns
where table_name = 'test_table';
紅色字部分為資料表名稱
搜尋結果
UI設定畫面
[MSSQL]
SELECT COLUMN_NAME,DATA_TYPE,COLUMN_DEFAULT from information_schema.columns
where table_name = 'table_Name';
留言
張貼留言