Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/11/2011, 09:09
Avatar de Libras
Libras
Colaborador
 
Fecha de Ingreso: agosto-2006
Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 18 años, 5 meses
Puntos: 774
Respuesta: ordenar una tabla en sql

Podrias usar los siguiente:

create table #temp(
id_pais int,
pais varchar(20),
orden int identity(1,1)
)

insert into #temp (id_pais,pais)
select id_pais,pais from paises where id_pais=@parametro

insert into #temp
select id_pais,pais from paises where id_pais not in (@parametro)

select * from #temp order by orden


Algo asi :)
__________________
What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me