11 Nisan 2018 Çarşamba

UNION ALL

Giriş
Farklı tablolardan gelen aynı tipteki sütunları birleştirir. UNION ile benzeşir.

Örnek
Şöyle yaparız.
select 'A', count(*) from a where id = 4
union all
select 'B', count(*) from b where id = 4
union all
select 'C', count(*) from c where id = 4
union all
select 'D', count(*) from d where id = 4
Çıktı olarak şunu alırız
Table name       No of occurence

A                   5
B                   7
C                   3
D                   1

Hiç yorum yok:

Yorum Gönder