So I have the current query:
UNION ALL SELECT 1,2,3,concat(username),5,6 FROM users LIMIT 0,1
I am aware that "LIMIT 0,1" only makes it show 1 result, but is it possible to make it show around 5 - 20 results at a time, so after I input the query I would want to get something like this:
username1, username2, username3, username4, username5
etc.. and when I run the query again (after modifying it of course), I would want to get something like:
username6, username7, username8, username9, username10
Thanks :)