select *
from (select id, sum(degree)
from employee_skill
group by id
)as t1 full outer join
(select id, sum(score)
from project_employee
group by id
)as t2
where t1.id = t2.id
这段 sql 语句 不知道为什么 不能使用 全外连接,如果是内连接的话,语句是没有问题的
希望大佬能解答一下
select *
from (select id, sum(degree)
from employee_skill
group by id
)as t1 full outer join
(select id, sum(score)
from project_employee
group by id
)as t2
where t1.id = t2.id
这段 sql 语句 不知道为什么 不能使用 全外连接,如果是内连接的话,语句是没有问题的
希望大佬能解答一下
mysql 是不支持全外连接的,可以使用union all进行替换