I want to select a row number which is specified from a textbox. This number changes depending on the qantity of data been assessed. I have tried the following SQL but to no avail.
SELECT TOP 1 *
FROM [Select top [Text156] * from HOURLY_AVERAGE order by AvgOfNO2 desc]. AS T1 ORDER BY AvgOfNO2;
Any ideas
Cheers
SELECT TOP 1 *
FROM [Select top [Text156] * from HOURLY_AVERAGE order by AvgOfNO2 desc]. AS T1 ORDER BY AvgOfNO2;
Any ideas
Cheers