您现在的位置是: 首页 > 杂七杂八 【代码片段】MySQL 查看数据库所有表注释
【代码片段】MySQL 查看数据库所有表注释
2020-10-11 【杂七杂八】 2402人已围观 4527次浏览
简介【代码片段】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 项目完整部署方案
站长推荐
猜你喜欢
- SqlServer 刷新所有视图
- Redis 提示 MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk 解决方案
- 删除Git仓库所有历史提交记录,成为一个干净的仓库
- Mac禁用Adobe Creative Cloud自启状态栏
- Linux no space left on device 出现设备上没有空间问题
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作
- cmder vim方向键无法使用 解决方案
- LNMP定时备份任务教程(支持排除指定文件夹)
- SpringBoot 集成 Elasticsearch 7.8.1 出现错误 Factory method 'elasticsearchRestHighLevelClient' threw exception; nested exception is java.lang.NoSuchFieldError: IGNORE_DEPRECATIONS
- 解决443端口被VMWare Workstation占用