Thread
:
get the value of the 3rd row from bottom?
View Single Post
#
3
(
permalink
)
01-18-2008, 11:05 AM
Unregistered
Posts: n/a
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
Unregistered