PowerDesigner生成SQL的冒号设置
环境
Win7 64bit
PowerDesigner 16 32bit
生成SQL脚本
Database>Generate Database
快捷键 Ctrl+G
生成窗口
生成脚本
drop table if exists `t_log`;
/*==============================================================*/
/* Table: `t_log` */
/*==============================================================*/
create table `t_log`
(
`id` int not null,
`memo` varchar(500),
primary key (`id`)
);
去掉冒号
生成SQL脚本时,默认对象带有双引号
步骤:Database>Script>Sql>Format>CaseSensitivityUsingQuote>选择No
修改设置不要remove,否则无法修改为带引号
点击确定将弹窗提示
PowerDesigner - Confirmation
Would you like to save the changes made to "MySQL 5.0" in the file (D:\Program Files\Sybase\PowerDesigner 16\Resource Files\DBMS\mysql50.xdb)?
作者: 燃烧的竹子
出处: https://www.cnblogs.com/HittheRoad/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.