atitit。获取表格的字段注释metadata的原理以及AND 字段表格描述文档方案

1. 通过sql ide navicate获取(推荐)通过meatadata数据库获取 1

2. 通过代码获取 1

2.1. ResultSet的字段列表  fields(23个)
2

3. 通过phpmyadmin>>表结构,复制表头,word里面行专列 6

3.1. word里面行专列 6

1. 通过sql ide navicate获取(推荐)通过meatadata数据库获取

mysql 数据字段文档

获取表单描述:

SELECT TABLE_NAME, TABLE_COMMENT FROM information_schema.tables



获取表行的备注:

select column_name,COLUMN_COMMENT from information_schema.`COLUMNS` where TABLE_NAME='mall_shop_info'

shop_intro店铺介绍

shop_notice店铺公告

shop_creat_time店铺创建时间

goods_num店铺产品数量

open_flg店铺关闭,1为关闭

lock_flg店铺锁定,1为锁定

map_x地图经线坐标

作者:: 老哇的爪子 Attilax 艾龙,  EMAIL:1466519819@qq.com

转载请注明来源: http://blog.csdn.net/attilax

2. 通过代码获取

private static void t1() throws SQLException {

//t4();

Connection con=IocX.getBean(Connection.class);

DatabaseMetaData   dbmd   =   con.getMetaData();

String tableName="mall_order_info";

ResultSet  rs   =   dbmd.getColumns(con.getCatalog(),   "%",   tableName,   null);

while(rs.next()) {

String columnName = rs.getString("COLUMN_NAME");

String columnType = rs.getString("TYPE_NAME");

int datasize = rs.getInt("COLUMN_SIZE");

int digits = rs.getInt("DECIMAL_DIGITS");

int nullable = rs.getInt("NULLABLE");

String COLUMN_COMMENT = rs.getString("REMARKS");

个)

Line 5:   column name: TABLE_CAT

Line 13:   column name: TABLE_SCHEM

Line 19:   column name: TABLE_NAME

Line 25:   column name: COLUMN_NAME

Line 31:   column name: DATA_TYPE

Line 37:   column name: TYPE_NAME

Line 43:   column name: COLUMN_SIZE

Line 49:   column name: BUFFER_LENGTH

Line 55:   column name: DECIMAL_DIGITS

Line 61:   column name: NUM_PREC_RADIX

Line 67:   column name: NULLABLE

Line 73:   column name: REMARKS

Line 79:   column name: COLUMN_DEF

Line 85:   column name: SQL_DATA_TYPE

Line 91:   column name: SQL_DATETIME_SUB

Line 97:   column name: CHAR_OCTET_LENGTH

Line 103:   column name: ORDINAL_POSITION

Line 109:   column name: IS_NULLABLE

Line 115:   column name: SCOPE_CATALOG

Line 121:   column name: SCOPE_SCHEMA

Line 127:   column name: SCOPE_TABLE

Line 133:   column name: SOURCE_DATA_TYPE

Line 139:   column name: IS_AUTOINCREMENT

[com.mysql.jdbc.Field@171be16

catalog: null

table name:

original table name: null

column name: TABLE_CAT

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@76c95b

catalog: null

table name:

original table name: null

column name: TABLE_SCHEM

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@9d966d

catalog: null

table name:

original table name: null

column name: TABLE_NAME

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1feea1e

catalog: null

table name:

original table name: null

column name: COLUMN_NAME

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@bc6a08

catalog: null

table name:

original table name: null

column name: DATA_TYPE

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1d54e44

catalog: null

table name:

original table name: null

column name: TYPE_NAME

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1057212

catalog: null

table name:

original table name: null

column name: COLUMN_SIZE

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@843ce4

catalog: null

table name:

original table name: null

column name: BUFFER_LENGTH

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1b9bccc

catalog: null

table name:

original table name: null

column name: DECIMAL_DIGITS

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@11a241f

catalog: null

table name:

original table name: null

column name: NUM_PREC_RADIX

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@139b06a

catalog: null

table name:

original table name: null

column name: NULLABLE

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@6d05ee

catalog: null

table name:

original table name: null

column name: REMARKS

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1a07061

catalog: null

table name:

original table name: null

column name: COLUMN_DEF

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@32007f

catalog: null

table name:

original table name: null

column name: SQL_DATA_TYPE

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@bec229

catalog: null

table name:

original table name: null

column name: SQL_DATETIME_SUB

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1bd2497

catalog: null

table name:

original table name: null

column name: CHAR_OCTET_LENGTH

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@ad6ab6

catalog: null

table name:

original table name: null

column name: ORDINAL_POSITION

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@138ecb8

catalog: null

table name:

original table name: null

column name: IS_NULLABLE

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@3d2ff1

catalog: null

table name:

original table name: null

column name: SCOPE_CATALOG

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@11684ac

catalog: null

table name:

original table name: null

column name: SCOPE_SCHEMA

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1604c40

catalog: null

table name:

original table name: null

column name: SCOPE_TABLE

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@12e1a27

catalog: null

table name:

original table name: null

column name: SOURCE_DATA_TYPE

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1), com.mysql.jdbc.Field@1b70047

catalog: null

table name:

original table name: null

column name: IS_AUTOINCREMENT

original column name: null

MySQL data type: -1( Unknown MySQL Type # -1)]

3. 通过phpmyadmin>>表结构,复制表头,word里面行专列

3.1. word里面行专列

表格工具》》》转换为换行符号<p>

shop_commend

shop_id 店铺id

user_id 用户id

shop_name 店铺名称

shop_country 店铺所在国家

shop_province 店铺所在省份

shop_city 店铺所在城市

shop_district 店铺所在区

shop_address 店铺所在详细地址

shop_images 店铺介绍中的图片

shop_logo 店铺logo

shop_template_img 店铺模板大图

shop_template 店铺模板

shop_management 店铺主营

shop_intro 店铺介绍

shop_notice 店铺公告

shop_creat_time 店铺创建时间

goods_num 店铺产品数量

open_flg 店铺关闭,1为关闭

lock_flg 店铺锁定,1为锁定

map_x 地图经线坐标

map_y 地图纬线坐标

map_zoom 地图比例

count_imgsize 图片总大小

shop_categories 店铺最后分类

shop_domain 商店二级域名

atitit。获取表格的字段注释metadata的原理以及AND 字段表格描述文档方案的更多相关文章

  1. sqlserver添加表、字段注释

    引用 :http://begoodluck.blog.163.com/blog/static/20450728020141191412788/ 1.sqlserver用语句给表注释EXECUTE sp ...

  2. sqlserver添加查询 表、字段注释(转)

    环境:xp sp3,sql server2008 .sqlserver用语句给表注释 EXECUTE sp_addextendedproperty N'MS_Description', N'表注释', ...

  3. Atitit.获取某个服务 网络邻居列表 解决方案

    Atitit.获取某个服务 网络邻居列表 解决方案 原理,带入某个ip扫描从0---255 很快,多线程几秒就可以出来. 使用CountDownLatch来join线程.. 返回  [{ " ...

  4. 在oracle中操作表及字段注释,查询一个表的所有字段名以及属性和约束

    1.查询表注释 SELECT * FROM USER_TAB_COMMENTS; 三列:TABLE_NAME,TABLE_TYPE,COMMENTS 2.查询字段注释 SELECT * FROM US ...

  5. Activiti6系列(1)- 核心数据库表及字段注释说明

    前言 本文是根据<疯狂工作流讲义-Activiti6.0>一书中提取过来的,有兴趣的可以去当当网买这本书,讲的很不错,最后还有实战案例. 虽然是提取过来的,但完全靠手打梳理,觉得有用的小伙 ...

  6. SpringBoot接口 - 如何生成接口文档之非侵入方式(通过注释生成)Smart-Doc?

    通过Swagger系列可以快速生成API文档,但是这种API文档生成是需要在接口上添加注解等,这表明这是一种侵入式方式: 那么有没有非侵入式方式呢, 比如通过注释生成文档? 本文主要介绍非侵入式的方式 ...

  7. java文档注释--javadoc的用法

    1.前言 Java中有三种注释方式.前两种分别是 // 和 /* */,主要用于代码的注释,以此来方便代码的可读性.第三种被称作说明注释或文档注释,它以 /** 开始,以 */结束,文档注释允许你在程 ...

  8. 转 创建 JavaScript XML 文档注释

    http://www.cnblogs.com/chenxizhang/archive/2009/07/12/1522058.html 如何:创建 JavaScript XML 文档注释 Visual ...

  9. java文档注释主要使用方法

    一.java包含哪些注释 1.//用于单行注释. 2./*...*/用于多行注释,从/*开始,到*/结束,不能嵌套. 3./**...*/则是为支持jdk工具javadoc.exe而特有的注释语句.这 ...

随机推荐

  1. EventBus (二) 使用详解——EventBus使用进阶

    相关文章: 1.<EventBus使用详解(一)——初步使用EventBus> 2.<EventBus使用详解(二)——EventBus使用进阶> 一.概述 前一篇给大家装简单 ...

  2. MFC【6】文件I/O和串行化

    文件输入和输出(I/O)服务是所有操作系统的主要工作.Microsoft Windows提供了各种API函数用来读.写和操作磁盘文件.MFC将这些桉树和CFile类融合在面对对象的模型里.其中CFil ...

  3. js版根据经纬度计算多边形面积(墨卡托投影)

    [摘要:var earthRadiusMeters = 6371000.0; var metersPerDegree = 2.0 * Math.PI * earthRadiusMeters / 360 ...

  4. 【转】svn 的开发目录结构和流程

    原文: https://blog.csdn.net/iteye_15570/article/details/82548132 ------------------------------------- ...

  5. HDU 5025图论之BFS

    点击打开链接 题意:从K走到T,S为怪,走的时候就多花费一秒,走到T时收集m把不同的钥匙.可是规定收集n之前,必须1~n-1所有收集完成,怪最多有5个 思路:怪最多就有5个,然后钥匙是1~9把,我们每 ...

  6. 自用封装javascript函数

    (function(){ var JHRZ_IMG_Arr = JHRZ_IMG_Arr || {}; JHRZ_IMG_Arr.loading = ["/static/images/loa ...

  7. Error: Cannot find module 'express' 之 解决方案

    出现如题错误,是因为执行了#npm install -g express的缘故,express没有被写到package.json里面去. 解决也好办,在程序目录下执行#npm install expr ...

  8. Mysql5.7.22版本,插入中文乱码的问题

    首先,mysql5.7.22版本的免安装版本的,需要自己配置信息,而且容易出现问题,这里还是建议下载安装版本.msi,按照安装教程进行安装:安装成功后会在数据存储的data文件下找到参数配置文件my. ...

  9. selenium 问题:OSError: [WinError 6] 句柄无效

    问题: 执行多个用例的时候,会抛出异常: File "xxxxxx.py", line 16, in get_driver driver = webdriver.Chrome(ex ...

  10. PHP 5 时区

    PHP 5 时区 PHP 支持的时区 下面是 PHP 支持的时区的完整列表,这些对一些 PHP 日期函数很有用. 非洲 美洲 南极洲 北冰洋 亚洲 大西洋 大洋洲 欧洲 印度洋 太平洋 非洲 Afri ...