标签: mysql sql join
select * from (select * from campaign) a full join (select * from usagecount)b using(user_id);
适用于
select * from campaign full join usagecount using(user_id);
我的问题是,如果它(完全加入)在我在两个普通表之间使用时起作用,为什么它不能在子查询之间工作。