26/10/2011, 15:54
|
| Colaborador | | Fecha de Ingreso: agosto-2006 Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 18 años, 4 meses Puntos: 774 | |
Respuesta: Campo repetido create table #temp
(
nota int
)
insert into #temp values(5)
insert into #temp values(5)
insert into #temp values(7)
insert into #temp values(7)
insert into #temp values(8)
select nota from #temp
group by nota
having count(nota)=1
Saludos!
__________________ What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me |