–生成测试表Ta if not object_id('Ta') is null drop table Ta go create table Ta(ID int Primary key,Col1 int,Col2 nvarchar(10)) insert Ta select 1,101,'A' union all select 2,102,'B' union all select 3,103,'C' go 生成数据: /* 表Ta ID Col1 Col2 ———– ———– ———- 1 101 A 2 102 B 3 103