Select count(*) from multiple tables - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T13:26:10Zhttp://stackoverflow.com/feeds/question/606234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/606234/select-count-from-multiple-tables8Select count(*) from multiple tablespistacchio2009-03-03T12:37:06Z2009-08-27T12:45:20Z
<p>Ho to all!
How can I select count(*) fro two different tables (call them tab1 and tab2) having as resulta:</p>
<pre><code>Count_1 Count_2
123 456
</code></pre>
<p>? I've tried this:</p>
<pre><code>select count(*) Count_1 from schema.tab1 union all select count(*) Count_2 from schema.tab2
</code></pre>
<p>but all i have is:</p>
<pre><code>Count_1
123
456
</code></pre>
<p>Thanx in advance</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/606238#60623826Answer by Quassnoi for Select count(*) from multiple tablesQuassnoi2009-03-03T12:39:19Z2009-03-05T09:52:36Z<pre><code>SELECT (
SELECT COUNT(*)
FROM tab1
) AS count1,
(
SELECT COUNT(*)
FROM tab2
) AS count2
FROM dual
</code></pre>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/606242#6062421Answer by Jens Schauder for Select count(*) from multiple tablesJens Schauder2009-03-03T12:39:54Z2009-03-03T12:39:54Z<pre><code>select (select count(*) from tab1) count_1, (select count(*) from tab2) count_2 from dual;
</code></pre>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/606248#606248-1Answer by CJM for Select count(*) from multiple tablesCJM2009-03-03T12:41:10Z2009-03-03T12:41:10Z<p>A quick stab came up with:</p>
<p>Select (select count(<em>) from Table1) as Count1, (select count(</em>) from Table2) as Count2</p>
<p>[Note: I tested this in SQL Server, so From Dual is not necessary (hence the discrepancy)]</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/606257#6062579Answer by dincer80 for Select count(*) from multiple tablesdincer802009-03-03T12:45:16Z2009-03-03T12:45:16Z<p>As an additional info, to accomplish same thing in SQL Server, you just need to remove "FROM dual" part of the query.</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/606259#6062591Answer by Nic Wise for Select count(*) from multiple tablesNic Wise2009-03-03T12:45:31Z2009-03-03T12:45:31Z<p>My experience is with SQL Server, but could you do:</p>
<pre><code>select (select count(*) from table1) as count1,
(select count(*) from table2) as count2
</code></pre>
<p>In SQL Server I get the result you are after.</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/606264#6062640Answer by Kay Marczinzik for Select count(*) from multiple tablesKay Marczinzik2009-03-03T12:47:27Z2009-03-03T12:47:27Z<p>If the tables (or at least a key column) are of the same type just make the union first and then count.</p>
<pre><code>select count(*)
from (select tab1key as key from schema.tab1
union all
select tab2key as key from schema.tab2
)
</code></pre>
<p>Or take your satement and put another sum() around it.</p>
<pre><code>select sum(amount) from
(
select count(*) amount from schema.tab1 union all select count(*) amount from schema.tab2
)
</code></pre>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/607209#6072091Answer by Mike Woodhouse for Select count(*) from multiple tablesMike Woodhouse2009-03-03T16:51:29Z2009-03-03T16:51:29Z<p>Just because it's slightly different:</p>
<pre><code>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
</code></pre>
<p>It gives the answers transposed (one row per table instead of one column), otherwise I don't think it's much different. I think performance-wise they should be equivalent.</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/608009#6080091Answer by David Aldridge for Select count(*) from multiple tablesDavid Aldridge2009-03-03T20:25:18Z2009-03-03T20:25:18Z<p>Other slightly different methods:</p>
<pre><code>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
/
</code></pre>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/614191#6141910Answer by Jimmy Stenke for Select count(*) from multiple tablesJimmy Stenke2009-03-05T10:09:26Z2009-03-05T10:09:26Z<p>As I can't see any other answer bring this up.</p>
<p><strong>If</strong> you don't like sub-queries <strong>and</strong> have primary keys in each table you can do this:</p>
<pre><code>select count(distinct tab1.id) as count_t1,
count(distinct tab2.id) as count_t2
from tab1, tab2
</code></pre>
<p>But performance wise I believe that Quassnoi's solution is better, and the one I would use.</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/852000#8520000Answer by for Select count(*) from multiple tables2009-05-12T09:47:31Z2009-05-12T09:47:31Z<p>Thanks a lot.. Was looking for a solution to this</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/1102246#11022460Answer by DR Hussein Khidhr for Select count(*) from multiple tablesDR Hussein Khidhr2009-07-09T07:01:03Z2009-07-09T07:01:03Z<p>SELECT (SELECT COUNT(<em>) FROM table1) + (SELECT COUNT(</em>) FROM table2) FROM dual;</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/1210763#12107630Answer by Fadzil for Select count(*) from multiple tablesFadzil2009-07-31T04:56:49Z2009-07-31T04:56:49Z<p>Here is from me to share</p>
<p><strong>Option 1 - counting from same domain from different table</strong></p>
<p>select distinct(select count(<em>) from domain1.table1) "count1", (select count(</em>) from domain1.table2) "count2" from domain1.table1, domain1.table2;</p>
<p><strong>Option 2 - counting from different domain for same table</strong></p>
<p>select distinct(select count(<em>) from domain1.table1) "count1", (select count(</em>) from domain2.table1) "count2" from domain1.table1, domain2.table1;</p>
<p><strong>Option 3 - counting from different domain for same table with "union all" to have rows of count</strong></p>
<p>select 'domain 1'"domain", count(<em>) from domain1.table1 union all select 'domain 2', count(</em>) from domain2.table1;</p>
<p>Enjoy the sql, I always do :)</p>
http://stackoverflow.com/questions/606234/select-count-from-multiple-tables/1340857#13408570Answer by Chris Gill for Select count(*) from multiple tablesChris Gill2009-08-27T12:45:20Z2009-08-27T12:45:20Z<p>For a bit of completeness - this query will create a query to give you a count of all of the tables for a given owner. </p>
<pre><code>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;
</code></pre>
<p>The output is something like </p>
<pre><code>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
</code></pre>
<p>Which you can then run to get your counts. Its just a handy script to have around sometimes</p>