生成sql包含comment列(powerDesigner16.5)
程序员文章站
2022-05-03 17:54:01
生成sql包含comment列(powerdesigner16.5)。
目的:生成的sql中包含comment。
意义:创建的表的sql中有说明文字,可以通过代码生成工具取到comment字段,自动...
生成sql包含comment列(powerdesigner16.5)。
目的:生成的sql中包含comment。
意义:创建的表的sql中有说明文字,可以通过代码生成工具取到comment字段,自动中文注释及更有意义的事情。
操作:
1. 设置当未填写列备注时使用列名称作为备注
默认的pd没有生成注释,针对mysql5.0可以如下修改。
在database–>edit current dbms…
设置dbms的属性,找到mysql5.0–>script–>objects–>column–>add
把原来的内容:
%20:column% [%national%?national ]%datatype%[%unsigned%? unsigned][%zerofill%? zerofill][ [.o:[character set][charset]] %charset%][.z:[ %notnull%][%identity%? auto_increment:[ default %default%]][ comment %.q:@objtlabl%]]
改为:
%20:column% [%national%?national ]%datatype%[%unsigned%? unsigned][%zerofill%? zerofill][ [.o:[character set][charset]] %charset%][.z:[ %notnull%][%identity%? auto_increment:[ default %default%]][ comment %.q:comment%]]
上一篇: 【PAT】A1002 A+B for Polynomials
下一篇: JS如何获取随机颜色?
推荐阅读
-
PowerDesigner16生成SQL2005列注释的方法
-
SQL Server查找表名或列名中包含空格的表和列实例代码
-
生成sql包含comment列(powerDesigner16.5)
-
SQL Server如何查找表名或列名中包含空格的表和列
-
PowerDesigner通过SQL语句生成PDM文件并将name和comment进行互相转换
-
Python读取excel指定列生成指定sql脚本的方法
-
经常用到的交叉表问题,一般用动态SQL能生成动态列!_MySQL
-
PowerDesigner16生成SQL2005列注释的方法
-
经常用到的交叉表问题,一般用动态SQL能生成动态列!_PHP教程
-
PowerDesigner16.5导出SQL语句时如何将name列复制到comment注释