Yanıtlar:
SELECT (
SELECT COUNT(*)
FROM tab1
) AS count1,
(
SELECT COUNT(*)
FROM tab2
) AS count2
FROM dual
FROM dual
.
Ek bilgi olarak, SQL Server'da aynı şeyi gerçekleştirmek için, sorgunun "FROM dual" kısmını kaldırmanız yeterlidir.
Sadece biraz farklı olduğu için:
SELECT 'table_1' AS table_name, COUNT(*) FROM table_1
UNION
SELECT 'table_2' AS table_name, COUNT(*) FROM table_2
UNION
SELECT 'table_3' AS table_name, COUNT(*) FROM table_3
Aktarılan cevapları verir (bir sütun yerine tablo başına bir satır), aksi takdirde çok farklı olduğunu düşünmüyorum. Bence performans açısından eşdeğer olmalılar.
Diğer biraz farklı yöntemler:
with t1_count as (select count(*) c1 from t1),
t2_count as (select count(*) c2 from t2)
select c1,
c2
from t1_count,
t2_count
/
select c1,
c2
from (select count(*) c1 from t1) t1_count,
(select count(*) c2 from t2) t2_count
/
Başka bir cevap göremediğim için bunu gündeme getirin.
Eğer siz alt sorgular sevmiyorum ve bunu yapabilirsiniz her tabloda birincil anahtarları vardır:
select count(distinct tab1.id) as count_t1,
count(distinct tab2.id) as count_t2
from tab1, tab2
Ama performans açısından Quassnoi'nin çözümünün daha iyi ve kullanacağım çözüm olduğuna inanıyorum.
İşte paylaşmak için benden
Seçenek 1 - Farklı tablodan aynı alan adından sayma
select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain1.table2) "count2"
from domain1.table1, domain1.table2;
Seçenek 2 - Aynı tablo için farklı alan adından sayma
select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain2.table1) "count2"
from domain1.table1, domain2.table1;
Seçenek 3 - Sayım satırlarına sahip olmak için "tümünü birleştir" ile aynı tablo için farklı alan adından sayma
select 'domain 1'"domain", count(*)
from domain1.table1
union all
select 'domain 2', count(*)
from domain2.table1;
SQL tadını çıkarın, her zaman yaparım :)
select
t1.Count_1,t2.Count_2
from
(SELECT count(1) as Count_1 FROM tab1) as t1,
(SELECT count(1) as Count_2 FROM tab2) as t2
select (select count(*) from tab1) count_1, (select count(*) from tab2) count_2 from dual;
Biraz bütünlük için - bu sorgu size belirli bir sahip için tüm tabloların sayısını veren bir sorgu oluşturur.
select
DECODE(rownum, 1, '', ' UNION ALL ') ||
'SELECT ''' || table_name || ''' AS TABLE_NAME, COUNT(*) ' ||
' FROM ' || table_name as query_string
from all_tables
where owner = :owner;
Çıktı gibi bir şey
SELECT 'TAB1' AS TABLE_NAME, COUNT(*) FROM TAB1
UNION ALL SELECT 'TAB2' AS TABLE_NAME, COUNT(*) FROM TAB2
UNION ALL SELECT 'TAB3' AS TABLE_NAME, COUNT(*) FROM TAB3
UNION ALL SELECT 'TAB4' AS TABLE_NAME, COUNT(*) FROM TAB4
Daha sonra sayılarınızı almak için koşabilirsiniz. Bazen sadece kullanışlı bir senaryo.
Tablolar (veya en azından bir anahtar sütunu) aynı türdeyse, önce birliği yapın ve sonra sayın.
select count(*)
from (select tab1key as key from schema.tab1
union all
select tab2key as key from schema.tab2
)
Ya da doygunluğunuzu alın ve etrafına başka bir miktar () koyun.
select sum(amount) from
(
select count(*) amount from schema.tab1 union all select count(*) amount from schema.tab2
)
--============= FIRST WAY (Shows as Multiple Row) ===============
SELECT 'tblProducts' [TableName], COUNT(P.Id) [RowCount] FROM tblProducts P
UNION ALL
SELECT 'tblProductSales' [TableName], COUNT(S.Id) [RowCount] FROM tblProductSales S
--============== SECOND WAY (Shows in a Single Row) =============
SELECT
(SELECT COUNT(Id) FROM tblProducts) AS ProductCount,
(SELECT COUNT(Id) FROM tblProductSales) AS SalesCount
Declare @all int
SET @all = (select COUNT(*) from tab1) + (select count(*) from tab2)
Print @all
veya
SELECT (select COUNT(*) from tab1) + (select count(*) from tab2)
select @count = sum(data) from
(
select count(*) as data from #tempregion
union
select count(*) as data from #tempmetro
union
select count(*) as data from #tempcity
union
select count(*) as data from #tempzips
) a