MySQL 查看表的 comment
概念软件工程敏捷开发Google File System (GFS)MapReduceBigTableRPC SOAPAlibaba DubboBaidu burpApache ThriftMicroservicesDockerSpring CloudSprin
·
-- 查看表的 comment
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';
更多推荐
已为社区贡献1条内容
所有评论(0)