mysql查询表结构

2023-12-26 18:41:29

select?? ?
?? ?c.table_name as 表名,
? ? t.TABLE_COMMENT as 表名描述,
? ? c.column_name as 字段名称,
? ? c.column_type as 数据类型,
?? ?c.COLUMN_DEFAULT as 默认值,
? ? if(c.column_key = 'PRI','Y','N') as 主键,
? ? if(c.is_nullable='no','Y','N') as 非空,
? ? c.column_comment as 注释
from
?? ?information_schema.columns c
left join
?? ?information_schema.tables t
on c.table_name=t.table_name?
?? ?where c.TABLE_SCHEMA='xxx'
?? ?and t.TABLE_SCHEMA='xxx'
?? ?AND t.`TABLE_NAME` LIKE '11111%'

文章来源:https://blog.csdn.net/a854517900/article/details/135226950
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。