mysql 取得一个表的列名
时间:2008-09-24 来源:204tian
方法为:
DESCRIBE TableName
缩写为:
DESC TableName ----
DESCRIBE TableName
缩写为:
DESC TableName ----
SHOW COLUMNS FROM TableName
select COLUMN_NAME from information_schema.columns where table_name='TableName'
也可以实现相同的功能
相关阅读 更多 +