将两个查询语句拼接在一起 关键字 FULL JOIN
--将两个查询语句拼接在一起 关键字 FULL JOIN
select a.unit unit,a.number number,b.fine_number
from (第一个SQL) A FULL JOIN (第二个SQL) b on a.unit=b.unit
--将两个查询语句拼接在一起 关键字 FULL JOIN
select a.unit unit,a.number number,b.fine_number
from (第一个SQL) A FULL JOIN (第二个SQL) b on a.unit=b.unit