您现在的位置是: 首页 > 杂七杂八 【代码片段】MySQL 查看数据库所有表注释
【代码片段】MySQL 查看数据库所有表注释
2020-10-11 【杂七杂八】 2211人已围观 4297次浏览
简介【代码片段】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 项目完整部署方案
站长推荐
猜你喜欢
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- 删除Git仓库所有历史提交记录,成为一个干净的仓库
- sentinel directive while not in sentinel mode 问题解决
- CentOS 安装Node.js
- 优化 Mac 上 office 软件更新慢的问题
- docker mysql 导入 SQL 脚本
- CentOS 7 安装 Golang 环境
- Mac 设置允许任何来源
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Chrome 谷歌浏览器清除HTTPS证书缓存