[SQL]select user.name, filesource.filename from user full outer join filesource on user.id = filesource.id order by user.name;
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'outer join filesource on user.id = filesource.id order by user.name' at line 1

MySQL看来是不支持full outer join的了,可以这么处理:

select user.name,filesource.filename from user left join filesource on user.id = filesource.id union select user.name,filesource.filename from user right join filesource on user.id=filesource.id;