这里用到的数据库为SQL2000. PowerDesigner 16. 原始格式: (个人认为的缺点) 创建表前先将原来的表删除(创建表逻辑,假如存在则drop.假如原来有数据,用drop就有问题.新的逻辑为假如存在则不创建.) 表名无中文名显示 列名无中文名显示 if exists (select 1 from sysobjects where id = object_id('table1') and type = 'U') drop table table1 go /*===========…