温馨提示×

mysql查询字段类型语句怎么写

小新
170
2021-03-23 19:45:52
栏目: 云计算

mysql查询字段类型语句怎么写

mysql查询字段类型语句的写法:

示例

select column_name,column_comment,data_type

from information_schema.columns

where table_name='查询表名称' and table_schema='数据库名称'


0