Za předpokladu, že mají stejné sloupce, pak použijte union all
:
select m.*
from mountains m
where m.trip_id = 74
union all
select f.*
from forests f
where f.trip_id = 74;
Za předpokladu, že mají stejné sloupce, pak použijte union all
:
select m.*
from mountains m
where m.trip_id = 74
union all
select f.*
from forests f
where f.trip_id = 74;