So this is my query
SELECT user_items.userid, users.username
FROM user_items
FULL OUTER JOIN users ON user_items.userid = users.username
And I get the limit 0,25 error. Could you please help me to see what I did wrong?
So this is my query
SELECT user_items.userid, users.username
FROM user_items
FULL OUTER JOIN users ON user_items.userid = users.username
And I get the limit 0,25 error. Could you please help me to see what I did wrong?