//查询列注释及列名称
Mysql 查询列注释及列名称select  column_name, column_comment from information_schema.columns where table_schema ='databaseName'  and table_name = 'tableName';
//查询表注释及表名称
Mysql 查询列注释及列名称select table_name,table_comment from information_schema.tables  where table_schema = 'image' and table_name ='tableName';


相关文章:

  • 2022-12-23
  • 2021-10-13
  • 2022-12-23
  • 2022-01-14
  • 2022-03-05
  • 2022-02-16
  • 2022-12-23
猜你喜欢
  • 2021-10-13
  • 2021-07-15
  • 2022-12-23
  • 2022-02-14
  • 2021-07-25
  • 2021-12-14
相关资源
相似解决方案