您现在的位置是: 首页 > 杂七杂八 【代码片段】MySQL 查看数据库所有表注释
【代码片段】MySQL 查看数据库所有表注释
2020-10-11 【杂七杂八】 3596人已围观 6262次浏览
简介【代码片段】MySQL 查看数据库所有表注释
项目开发周期长了或忘记当初建表时该表的用途,可以通过下面的SQL查询当前数据库所有表的表说明(如果建表都没写表说明,那就没办法了)
SELECT
table_name,-- 表名
table_comment-- 表说明
FROM
information_schema.TABLES
WHERE
table_schema = '数据库名'
ORDER BY
table_name
很赞哦! (0)
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Oracle ORA-12541:TNS:no listener错误解决方法
- SpringBoot 启动测试时出现提示 Test class should have exactly one public zero-argument constructor
- python scrapy 出现 DEBUG: Filtered offsite request to 错误
- SpringBoot 启动提示 Requested bean is currently in creation: Is there an unresolvable circular reference?
- SpringBoot 集成 Elasticsearch 7.8.1 出现错误 Factory method 'elasticsearchRestHighLevelClient' threw exception; nested exception is java.lang.NoSuchFieldError: IGNORE_DEPRECATIONS
- 解决Lost connection to MySQL server at 'reading initial communication packet' 的方法
- CentOS 7 安装 Golang 环境
- Linux no space left on device 出现设备上没有空间问题
- 使用 OpenSSL 将 pfx 格式证书转为 pem 格式
- Debian/Ubuntu无netstat命令解决方案