Link to home
Start Free TrialLog in
Avatar of rgb192
rgb192Flag for United States of America

asked on

mysql one result

using mysql

select column from table order by column desc

I only want the fifth result
Avatar of Jim Horn
Jim Horn
Flag of United States of America image

rgb192

Please explain why you've repeated this question, which you've accepted without responding to any other expert comments:

https://www.experts-exchange.com/questions/27831446/only-want-one-result.html
Avatar of rgb192

ASKER

I have to do a similar task with another database (mysql)
The first sql server result worked for me the best
Avatar of rgb192

ASKER

select column from table order by column desc limit 0,4
Avatar of rgb192

ASKER

does sql server also have limit function

because mysql does not have top or cte
ASKER CERTIFIED SOLUTION
Avatar of hielo
hielo
Flag of Wallis and Futuna image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rgb192

ASKER

Well explained
thank you