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)?
posted @ 2021-04-21 12:31  燃烧的竹子  阅读(89)  评论(0编辑  收藏  举报