I have 2 queries in MS SQL that return a number of results using the COUNT function.

I can run the the first query and get the first result and then run the other one to get the other result, subtract them and find the results; however is there a way to combine all 3 functions and get 1 overall result

As in: run sql1 run sql2 run SQL3 (sql1-sql2)?....

I tried them with xxxx as a function but no luck.

link|improve this question
1  
Tell us a little more about the structure of the tables and what data you want to get. Maybe the queries can be re-written to select what you want with only one quesry. – Vincent Ramdhanie Oct 19 '09 at 14:44
feedback

5 Answers

You should be able to use subqueries for that:

SELECT
    (SELECT COUNT(*) FROM ... WHERE ...)
  - (SELECT COUNT(*) FROM ... WHERE ...) AS Difference

Just tested it:

Difference
-----------
45

(1 row(s) affected)
link|improve this answer
feedback
SELECT (SELECT COUNT(*) FROM t1) - (SELECT COUNT(*) FROM t2)
link|improve this answer
THANKS this solves it:)...the simplest thing...ahhh sometimes – andreas Oct 19 '09 at 14:54
feedback

Just create an inline function with your query logic, and have it return the result. Pass in parameters as needed.

link|improve this answer
feedback
select @result = (select count(0) from table1) - (select count(0) from table2)
link|improve this answer
feedback
SELECT
   t1.HowManyInTable1
  ,t2.HowManyInTable2
  ,t1.HowManyInTable1 = t2.HowManyInTable2  Table1_minus_Table2
 from (select count(*) HowManyInTable1 from Table1) t1
  cross join (select count(*) HowManyInTable2 from Table2) t2
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.