读书人

DISTINCT有关问题

发布时间: 2012-04-28 11:49:53 作者: rapoo

DISTINCT问题
有tb1表
code name
0001 1
0002 2
0001 1
NULL 100
0002 2
0003 3

想得到TB2表
code name
0001 1
0002 2
0003 3

用insert into tb2 (code,name) select DISTINCT code,name from tb1不行,
用insert into tb2 code select DISTINCT code from tb1就可以,但只有一列!


[解决办法]

SQL code
insert into tb2 (code,name) select code,min(name) from tb1 where code is not null or upper(code)!='NULL'group by code
[解决办法]
insert into tb2 (code,name)
select code,min(name) from tb1 where code is not null group by code,name

读书人网 >SQL Server

热点推荐