ये रहा एक तरीका:
select (select count(*) from table1) as t1_amount,
(select count(*) from table2) as t2_amount
यहाँ एक और तरीका है:
select t1.t1_amount, t2.t2_amount
from (select count(*) as t1_amount from table1) t1 cross join
(select count(*) as t2_amount from table2) t2
आपका तरीका काम नहीं करता क्योंकि ,
from
. में क्लॉज एक cross join
. यह दो तालिकाओं के बीच एक कार्टेशियन उत्पाद करता है।