Chỉ cần đặt mỗi phần trong dấu ngoặc đơn. Vẫn hoạt động trong 12.2:
( Select * From tabl1 where Date = '04-MAR-2020' FETCH FIRST 1 ROW )
UNION ALL
( Select * From tabl1 where Date = '05-MAR-2020' FETCH FIRST 1 ROW )
Truy vấn thử nghiệm thực tế của tôi, cho bất kỳ ai quan tâm là:
(select object_name
from user_objects
where object_type = 'TABLE'
order by object_name
fetch first 1 row only)
UNION ALL
(select object_name
from user_objects
where object_type = 'VIEW'
order by object_name
fetch first 1 row only);