使用powerdesigner生成sql脚本问题

我想用powerdesigner生成这样的sql脚本:
drop table if exists chuove_activity;
可是我的powerdesigner总是生成这样的:
if exists (select 1
from sysobjects
where id = object_id('"CLR Trigger_chuove_consumers_shopcollecttion"')
and type = 'TR')
drop trigger "CLR Trigger_chuove_consumers_shopcollecttion"
go
怎么破???谢谢

把go去掉?

图片说明

这是powerdesigner默认生成的sql,你要修改可以把sql语句复制出来单独修改.

你按照这个模板修改一下试试.
图片说明

图片说明