------解决方案-------------------- 写有go可以一次执行 ------解决方案-------------------- 一个go一个go的执行方式,如果后面的go语句内容错误,前面的会一样执行。
你可以自己做个试验 ------解决方案-------------------- 一次执行就可以了。
这里是MSDN的解释:
SQL Server utilities interpret GO as a signal that they should send the current batch of Transact-SQL statements to an instance of SQL Server.The current batch of statements is composed of all statements entered since the last GO, or since the start of the ad hoc session or script if this is the first GO. ------解决方案-------------------- GO 表示上面语句执行一次
你想执行两次
可以写
select 1
GO 2 ------解决方案-------------------- 每一个go就是一个批处理,可以一次性执行,但是每个go是一个事务,每个go之间具有ACID特性。同时,有些语句必须要加go,有些却不允许加GO,这些要多多体会。 ------解决方案--------------------