PowerDesigner生成mysql腳本后多了一個(gè)national關(guān)鍵字
環(huán)境:
PowerDesigner版本號:16.5.0.3982
數(shù)據(jù)庫:mysql
問題:
PowerDesigner生成mysql腳本后多了一個(gè)national關(guān)鍵字
現(xiàn)象:
逆向工程后,模型中varchar類型的字段默認(rèn)將National勾選上,如下圖:
導(dǎo)出SQL示例:
create table tb_user
(
user_id bigint(20) not null auto_increment comment 'user_id',
username national varchar(50) not null comment '用戶名',
mobile national varchar(20) not null comment '手機(jī)號',
password national varchar(64) comment '密碼',
create_time datetime comment '創(chuàng)建時(shí)間',
primary key (user_id)
);
alter table tb_user comment '用戶';
解決方案:
選擇Database->Edit Current DBMS菜單,如下圖:
選擇National,勾選Computed,如下圖所示:
驗(yàn)證結(jié)果:
重新查看表字段屬性,如下圖所示:
生成SQL驗(yàn)證界面如下:
至此,問題得以解決。
想了解更多?現(xiàn)在就開始免費(fèi)體驗(yàn)