Select count(*) from multiple tables - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T13:26:10Z http://stackoverflow.com/feeds/question/606234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/606234/select-count-from-multiple-tables 8 Select count(*) from multiple tables pistacchio 2009-03-03T12:37:06Z 2009-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#606238 26 Answer by Quassnoi for Select count(*) from multiple tables Quassnoi 2009-03-03T12:39:19Z 2009-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#606242 1 Answer by Jens Schauder for Select count(*) from multiple tables Jens Schauder 2009-03-03T12:39:54Z 2009-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 -1 Answer by CJM for Select count(*) from multiple tables CJM 2009-03-03T12:41:10Z 2009-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#606257 9 Answer by dincer80 for Select count(*) from multiple tables dincer80 2009-03-03T12:45:16Z 2009-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#606259 1 Answer by Nic Wise for Select count(*) from multiple tables Nic Wise 2009-03-03T12:45:31Z 2009-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#606264 0 Answer by Kay Marczinzik for Select count(*) from multiple tables Kay Marczinzik 2009-03-03T12:47:27Z 2009-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#607209 1 Answer by Mike Woodhouse for Select count(*) from multiple tables Mike Woodhouse 2009-03-03T16:51:29Z 2009-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#608009 1 Answer by David Aldridge for Select count(*) from multiple tables David Aldridge 2009-03-03T20:25:18Z 2009-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#614191 0 Answer by Jimmy Stenke for Select count(*) from multiple tables Jimmy Stenke 2009-03-05T10:09:26Z 2009-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#852000 0 Answer by for Select count(*) from multiple tables 2009-05-12T09:47:31Z 2009-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#1102246 0 Answer by DR Hussein Khidhr for Select count(*) from multiple tables DR Hussein Khidhr 2009-07-09T07:01:03Z 2009-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#1210763 0 Answer by Fadzil for Select count(*) from multiple tables Fadzil 2009-07-31T04:56:49Z 2009-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#1340857 0 Answer by Chris Gill for Select count(*) from multiple tables Chris Gill 2009-08-27T12:45:20Z 2009-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>