मान लें कि उनके पास समान कॉलम हैं, तो union all
. का उपयोग करें :
select m.*
from mountains m
where m.trip_id = 74
union all
select f.*
from forests f
where f.trip_id = 74;
मान लें कि उनके पास समान कॉलम हैं, तो union all
. का उपयोग करें :
select m.*
from mountains m
where m.trip_id = 74
union all
select f.*
from forests f
where f.trip_id = 74;