답변:
SELECT (
SELECT COUNT(*)
FROM tab1
) AS count1,
(
SELECT COUNT(*)
FROM tab2
) AS count2
FROM dual
FROM dual
.
추가 정보로서 SQL Server에서 동일한 작업을 수행하려면 쿼리의 "FROM dual"부분 만 제거하면됩니다.
약간 다르기 때문에 :
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
그것은 답변을 바꿨습니다 (한 열 대신 테이블 당 한 행). 그렇지 않으면 크게 다르다고 생각하지 않습니다. 나는 성능면에서 그것들이 동등해야한다고 생각합니다.
다른 약간 다른 방법 :
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
/
여기에서 나에게 공유
옵션 1-다른 테이블의 동일한 도메인에서 계산
select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain1.table2) "count2"
from domain1.table1, domain1.table2;
옵션 2-동일한 테이블에 대해 다른 도메인에서 계산
select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain2.table1) "count2"
from domain1.table1, domain2.table1;
옵션 3-행이 여러 개인 "union all"이있는 동일한 테이블에 대해 다른 도메인에서 계산
select 'domain 1'"domain", count(*)
from domain1.table1
union all
select 'domain 2', count(*)
from domain2.table1;
SQL을 즐기십시오, 나는 항상합니다 :)
약간의 완성도를 위해-이 쿼리는 쿼리를 생성하여 주어진 소유자에 대한 모든 테이블 수를 제공합니다.
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;
출력은 다음과 같습니다
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
그런 다음 카운트를 얻기 위해 실행할 수 있습니다. 때때로 가지고 다니기에 편리한 스크립트입니다.
테이블 (또는 적어도 키 열)이 동일한 유형이면 먼저 유니온을 만든 다음 계산하십시오.
select count(*)
from (select tab1key as key from schema.tab1
union all
select tab2key as key from schema.tab2
)
또는 당신의 satement를 가지고 주위에 또 다른 sum ()을 넣으십시오.
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
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