Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/01/2011, 08:56
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: Consulta ROW_NUMBER()

Código SQL:
Ver original
  1. SELECT P.ProductID, P.ProductName, C.CategoryName, P.UnitPrice, contact.RowNumber
  2.     FROM
  3.     (
  4.             SELECT P.ProductName,
  5.             ROW_NUMBER() OVER (ORDER BY P.ProductID) AS RowNumber
  6.             FROM Products AS P
  7.     ) AS Contact,
  8.     Categories AS C,
  9.     Products AS P
  10. WHERE P.CategoryID = C.CategoryID
  11.     AND contact.RowNumber BETWEEN 11 AND 20

Prueba asi :)

Saludos!