select name from adventure where set_num = '1' order by rand()
This query works great, but then I add a limit:
select name from adventure where set_num = '1' order by rand() LIMIT 1
and I get an error. Is there something wrong with the limit syntax?
Thanks!