PowerDesigner 脚本,将表名设置成comment
时间: 2024-02-25 07:49:11 浏览: 65
根据提供的引用内容,可以使用PowerDesigner脚本将表名设置成comment。具体步骤如下:
1. 打开PowerDesigner软件,选择需要设置comment的表格。
2. 在菜单栏中选择“Database” -> “Edit Current DBMS” -> “Edit Current DBMS”。
3. 在弹出的“Edit DBMS”窗口中,选择“DDL Generation”选项卡。
4. 在“DDL Generation”选项卡中,找到“Table”一栏,将“Table Comment”一栏的值设置为“[%TableName%]”。
5. 点击“OK”保存设置。
这样,在生成SQL脚本时,PowerDesigner会将表名自动设置为comment。例如,如果表名为“employee”,则生成的SQL脚本中会包含以下语句:
```sql
CREATE TABLE employee (
...
) COMMENT '[employee]';
```
阅读全文