Hello List!
I have a question on how to combine two result sets...
I have two queries that return the same ClientName and the number of each invalid records, and want to combine them into one.
For Example:
Returns me two results:
ONE:
ClientName #ofOccurances
MyClientName 188
TWO:
ClientName #ofOccurances
MyClientName 47
But, what I want is ONE result w/ the #ofOccurances added together:
ClientName #ofOccurances
MyClientName 235
How can I accomplish that?
Thanks in advance for your time and help!
-jiggyg
I have a question on how to combine two result sets...
I have two queries that return the same ClientName and the number of each invalid records, and want to combine them into one.
For Example:
Code:
SELECT ClientName, count(LocClientID) AS #ofOccurances
FROM [MasterDetails].dbo.getInvalidBmkAssignments(123)
WHERE LocClientID != 105
GROUP BY ClientName
-AND-
SELECT ClientName, count(ClientID) AS #ofOccurances
FROM [MasterDetails].dbo.getUNKNOWNBmkAssignments(123)
WHERE ClientID != 105
GROUP BY ClientName
Returns me two results:
ONE:
ClientName #ofOccurances
MyClientName 188
TWO:
ClientName #ofOccurances
MyClientName 47
But, what I want is ONE result w/ the #ofOccurances added together:
ClientName #ofOccurances
MyClientName 235
How can I accomplish that?
Thanks in advance for your time and help!
-jiggyg