बस प्रत्येक भाग को कोष्ठक में रखें। वैसे भी 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 )
मेरी वास्तविक परीक्षण क्वेरी, रुचि रखने वाले किसी भी व्यक्ति के लिए यह थी:
(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);