Hi, is there an opposite clause to TOP, like LAST for use with select-statements? Or, is there any way to get this: select LAST 10 * FROM (SELECT TOP 50 * from ...
SELECT Top 10 FUTO,* FROM ( Select * from (Select Top 50 <FieldUsedToOrder> as FUTO,* from <Table> order by <FieldUsedToOrder>) a order by FUTO DESC) b ORDER BY FUTO