我想讲一个MS SQL下的sql文件转换成可在PostgreSQL下执行的sql文件(例子:my.sql)
use mydb
goif exists (select * from sysobjects where name = 'tbl_test' and type = 'U')
drop table tbl_test
gocreate table tbl_test(
c1 int NOT NULL,
c2 varchar(255)
)
go转成PostgreSQL下的语法 请指教下?????
use 好像不行了  使用了\c   ?xiexie 3s