powerdesigner双引号去不掉怎么回事?powerdesigner我已经设置了CaseSensitivityUsingQuote为NO, 双引号怎么还是去不掉?什么情况呢?[解决办法]估计是用了数据库的保留关键字,比如你定义了某个字段名为“NAME”,这个是保留关键字。举例:create table a (name char(1)) 肯定是失败的只能用create table a ("name" char(1)) 建立才会成功