查找数据库中的所有字段的信息——MySQL


首先在MySQL自带表information_schema中可以找到我们所需要的数据

查找数据库中的所有字段的信息——MySQL

 

 

 然后输入如下sql即可:

select
    ic.table_schema '数据库名',
    ic.table_name '表名',
    ic.column_name '列名',
    ic.data_type '字段类型',
case ic.column_key
    when 'PRI' then
        '是'
    else 
        '否'
end '是否主键',
IF(ist.column_name = ic.column_name,'是','否')    '是否索引',
    ic.column_comment '备注'
from 
    information_schema.columns  ic    -- 字段表
left join
    information_schema.statistics ist  -- 索引
on    
    (ic.table_schema = ist.table_schema
and
    ic.table_name = ist.table_name)

 

参考来自https://blog.csdn.net/Yellow_Star___/article/details/119442678

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/276871.html

(0)
上一篇 2022年7月25日
下一篇 2022年7月25日

相关推荐

发表回复

登录后才能评论