Comment puis-je choisir count(*)
parmi deux tables différentes (appelez-les tab1
et tab2
) ayant comme résultat:
Count_1 Count_2
123 456
J'ai essayé ça:
select count(*) Count_1 from schema.tab1 union all select count(*) Count_2 from schema.tab2
Mais tout ce que j'ai, c'est:
Count_1
123
456