View Single Post
  #3 (permalink)  
Old 01-18-2008, 11:05 AM
Unregistered
 
Posts: n/a
Default ANY answer. Re: get the value of the 3rd row from bottom?

SELECT MIN(ShippingId) AS Expr1
FROM (SELECT TOP (3) ShippingId
FROM Shipping
ORDER BY ShippingId DESC) AS Expr2
Reply With Quote