as part of some testing I am attempting to select 5 random rows from a table, the code I'm running is:
select *
from Table_Name
order by RAND()
Limit 5;
Upon executing the code I am presented with the error SQL command not properly ended, could someone advise on how to get this working? for reference I am using oracle SQL Developer.
Thanks in advance