SORU
3 Mart 2009, Salı


Select count(*) birden fazla tablodan

Nasıl sonuç olarak: count(*) iki farklı tablodan (tab1 ve tab2 Ara) seçin

Count_1   Count_2
123       456

?

Bu denedim:

select count(*) Count_1 from schema.tab1 union all select count(*) Count_2 from schema.tab2

Ama sahip olduğum tek şey:

Count_1
123
456

CEVAP
3 Mart 2009, Salı


SELECT  (
        SELECT COUNT(*)
        FROM   tab1
        ) AS count1,
        (
        SELECT COUNT(*)
        FROM   tab2
        ) AS count2
FROM    dual

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Matthew Smith

    Matthew Smit

    24 Mayıs 2010
  • sebsebdouze

    sebsebdouze

    7 ŞUBAT 2008
  • Tylerron

    Tylerron

    6 AĞUSTOS 2006