这是啥意思?
create table tb(id int identity(1,1) not null constraint PK_tb primary key clustered ,pid int,name varchar(20))
----------以下内容看不懂
insert into tb
select 0,'中国'
union all select 0,'美国'
union all select 0,'加拿大'
union all select 1,'北京'
union all select 1,'上海'
union all select 1,'江苏'
union all select 6,'苏州'
union all select 7,'常熟'
union all select 6,'南京'
union all select 6,'无锡'
union all select 2,'纽约'
union all select 2,'旧金山'
go
谁能给俺解释一下??