Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/02/2007, 15:43
Avatar de Mithrandir
Mithrandir
Colaborador
 
Fecha de Ingreso: abril-2003
Mensajes: 12.106
Antigüedad: 21 años, 8 meses
Puntos: 25
Re: Incluir número de fila en Select

Una forma "sencilla" es usando tablas temporales:

CREATE TABLE #temp (a INT IDENTITY, b INT, c INT)

INSERT INTO #temp (b, c)
SELECT * FROM tutabla

SELECT * FROM #temp
__________________
"El hombre, en su orgullo, creó a Dios a su imagen y semejanza."
Friedrich Nietzsche