if exists(select * from sysobjects where xtype= 'V ' and name= 'VTmp')
drop view VTmp
go
Create View VTmp
AS
select Regional from ICB_Regional
go
if exists(select * from sysobjects where xtype= 'V ' and name= 'VTmp2')
drop view VTmp2
go
Create View VTmp2
AS
select Regional from ICB_Regional2
go
我在ibatis 中有这样一个sql 语句。直接在数据库中执行是正确的
但到了ibatis中报这样的错误
System.Data.SqlClient.SqlException:
'go' 附近有语法错误。
'CREATE VIEW' 必须是查询批次中的第一个语句。
'go' 附近有语法错误。
'go' 附近有语法错误。
'CREATE VIEW' 必须是查询批次中的第一个语句。
'go' 附近有语法错误。
加上事务