寫在前面
在實現某個功能的時候,需要使用MySql數據庫獲取某數據的所有的表名以及該表名的所有列名與列值。
根據數據庫獲取該數據庫下所有的表名
select table_name from information_schema.tables where table_schema='數據庫表名'
根據表名獲取列名與列值
select ORDINAL_POSITION as Colorder,Column_Name as ColumnName,COLUMN_COMMENT as DeText
from information_schema.columns where table_schema = '數據庫名稱' and table_name = '表名'
order by ORDINAL_POSITION asc
