mysql怎么查看表的comment

803次阅读
没有评论

mysql怎么查看表的comment

查看表的 comment

(推荐教程:mysql数据库学习教程)

SELECT table_name, table_comment
FROM information_schema.tables
WHERE table_schema = 'schema_name' AND table_name = 'table_name';

查看表中 columns 的 comment

SELECT column_name, column_comment
FROM information_schema.columns
WHERE table_schema = 'schema_name' AND table_name = 'table_name';

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:Python教程2022-10-19发表,共计346字。
新手QQ群:570568346,欢迎进群讨论 Python51学习