查詢mysql某張表中的所有資料(欄位)型別

那個id是什麼東西發表於2018-05-31

select DATA_TYPE from information_schema.COLUMNS where TABLE_NAME='表名';





select DATA_TYPE from information_schema.COLUMNS

where TABLE_SCHEMA='資料庫名'

and TABLE_NAME='表明'

and column_name = '欄位名';


select COLUMN_NAME,DATA_TYPE,COLUMN_COMMENT from information_schema.COLUMNS where table_name = '表名' and table_schema = '資料庫名稱';



相關文章