sql >> Base de Datos >  >> RDS >> Sqlserver

Encuentre registros no duplicados, excluyendo nulos, en función de un campo.

select min(id), dat1 from table where dat1 is not null group by dat1 
union
select id     , dat  from table where dat1 is null