文章摘要:mysql怎么查看表字段类型 mysql怎么查看字段的类型
mysql查看表字段类型的示例代码: select column_name,column_comme […]
mysql查看表字段类型的示例代码:
select column_name,column_comment,data_type
from information_schema.columns
where table_name='查询表名称' and table_schema='数据库名称'
查询结果显示方法:
desc 表名;
show columns from 表名;
describe 表名;
sql语句显示方法:
show create table 表名;