博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【ERP系统设计】【数据库设计】读取表注释和表中字段注释
阅读量:5268 次
发布时间:2019-06-14

本文共 1443 字,大约阅读时间需要 4 分钟。

之前由于做项目客户要求要看到表注释和表中字段注释,刚开始做的时候是一头雾水,之前没有做过,还是一步一步来

测试:【之前数据库中已经存在一个表,特此说明】

 1 新建表

   

mysql> create table stu1(    -> id int not null auto_increment primary key comment "a"    -> )    -> comment ="备注1";Query OK, 0 rows affected (0.11 sec)mysql> create table stu2(    -> id int not null auto_increment primary key comment "b"    -> )    -> comment ="备注2";Query OK, 0 rows affected (0.07 sec)mysql> create table stu3(    -> id int not null auto_increment primary key comment "C"    -> )    -> comment ="备注3";Query OK, 0 rows affected (0.11 sec)mysql> show tables;+----------------+| Tables_in_test |+----------------+| stu1           || stu2           || stu3           || test_table     |+----------------+4 rows in set (0.01 sec)

  

 2 查看数据库中所有表注释

    精要:select table_comment from information_schema.tables where table_schema="数据库名";

 

mysql> select table_comment from information_schema.tables where table_schema="test";+---------------+| table_comment |+---------------+| 备注1         || 备注2         || 备注3         || 测试表        |+---------------+4 rows in set (0.01 sec)

  

 3 查看数据表中所有字段注释

    精要:select column_comment  from Information_schema.columns where table_name="表名";

mysql> select column_comment as "字段注释" from Information_schema.columns where table_name="stu1";+----------+| 字段注释 |+----------+| a        |+----------+1 row in set (0.04 sec)mysql>

 总结:

   这些语句的实现有利于提高用户体验,实现软件的傻瓜的目的

转载于:https://www.cnblogs.com/kycool/archive/2012/04/16/2452180.html

你可能感兴趣的文章
[Java] 系统环境变量配置
查看>>
坏的事情不都会带来坏的结果
查看>>
设置placeholder的样式
查看>>
RPC的基础:调研EOS插件http_plugin
查看>>
HIT1946 希尔伯特分形曲线(dfs)
查看>>
第二次团队冲刺第二天
查看>>
青瓷引擎之纯JavaScript打造HTML5游戏第二弹——《跳跃的方块》Part 2
查看>>
bzoj 2257 (JSOI 2009) 瓶子与燃料
查看>>
11)Java abstract class 和 interface
查看>>
使用xrdp或Xmanager 远程连接 CentOS6
查看>>
SEH简单研究
查看>>
Linux误删恢复
查看>>
Unity调用Windows窗口句柄,选择文件和目录
查看>>
HashMap循环遍历方式
查看>>
React Native 入门 调试项目
查看>>
MySQL数据库 基本操作
查看>>
请大家规范电子邮件用法养成好的邮件习惯
查看>>
微信游戏和微信公众号小说如何有效做好域名防封,给大家分享我的有效经验...
查看>>
前端跨域知识总结
查看>>
C# 通过 Quartz .NET 实现 schedule job 的处理
查看>>