欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Mysql 查询列注释及列名称_MySQL

程序员文章站 2024-04-05 15:59:18
...
//查询列注释及列名称
Mysql 查询列注释及列名称_MySQLselect column_name, column_comment from information_schema.columns where table_schema ='databaseName' and table_name = 'tableName';//查询表注释及表名称
Mysql 查询列注释及列名称_MySQLselect table_name,table_comment from information_schema.tables where table_schema = 'image' and table_name ='tableName';
相关标签: 查询