MySQL FULL JOIN not working but RIGHT and LEFT join works
问题 This is driving me nuts. I have two tables that I am attempting to preform a join on, usersXstats and usersXstats_alltime. Both tables have the same columns: id, userId, statId, and value What I am trying to do is SELECT * FROM usersXstats FULL JOIN usersXstats_alltime ON usersXstats.userId=usersXstats_alltime.userId AND usersXstats.statId=usersXstats_alltime.statId However this is returning Unknown column 'usersXstats.userId' in 'on clause' This query works just as expected when replacing