Select specific row in slq db

What code i must type into a query to select eg the 5th row?

since rows in a database table do not have any sequence, this should do for what you want –

SELECT * FROM daTable ORDER BY RAND() LIMIT 4,1
1 Like

Thanks a lot my friend. It works fine.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.