USE [my server]
go
create table Mytable
(
A int not null,
B int not null,
C int
)
go
alter table Mytable
add constraint pk_C_my primary key(C)
go
请按这一段代码介绍,每一个go的作用,
不要拿MSDN的上面的说,
谢谢,
USE [my server]
go
create table Mytable
(
A int not null,
B int not null,
C int
)
go
alter table Mytable
add constraint pk_C_my primary key(C)
go
请按这一段代码介绍,每一个go的作用,
不要拿MSDN的上面的说,
谢谢,
GO 就是个分隔符……
每个被 GO 分隔的语句都是一个单独的事务。
也就是说,如果你用的是 SQL Server Management 之类的 GUI 工具,你开了一个查询窗口把上面这一大段粘进去执行,和你开三个查询窗口分别把 GO 隔开的三部分粘进去执行,效果是一样的。