Hello,
I have a query consisting of 3 queries all union-ed together each returning a specific count. My end result looks like this:
Kount Type
786 Duplicates
11737 Orders
38503 Calls
What I want is to do the following calculation within this sql query.
(Calls + Orders) - Duplicates
Is this possible?
Thanks,
Stewman
I have a query consisting of 3 queries all union-ed together each returning a specific count. My end result looks like this:
Kount Type
786 Duplicates
11737 Orders
38503 Calls
What I want is to do the following calculation within this sql query.
(Calls + Orders) - Duplicates
Is this possible?
Thanks,
Stewman