Well I have a table with an id for which I need to check if 2 conditions are applicable. Each condition is a set of where clause.
For example, Table1 is the one I need to check.
1st condition:
select t1.id
from table1 t1, table2 t2, table3 t3
where
condition1,
condition2,
condition3
2nd condition:
select t1.id
from table1 t1, table2 t2, table4 t4
where
condition1,
condition4,
condition5
Now i need to check if the 1st condition or 2nd condition apply on the same id or both. I've been told to use union and add a static value in the select statement for each condition (for ex for 1st condition select t1.id, 1 and for 2nd condition select t1.id, 2) but when i tried it, each row is returning alone for the same table1 id.
The tables are really big and contain millions of records so i need to do this in one sql for better performance, plus I am accessing the results from a C code and since I am not sure about the number of results returned, i will have a really bad performance executing each query alone, saving the results in an array for each one and doing a loop on each array to check for which id both or one condition apply since different processing for each id will be done based on which conditions apply on it.
EDIT example:
t1 ids: 1, 2, 3, 4
for id = 1, only condition 1 apply
for id = 2, only condition 2 apply
for id = 3, both conditions apply
for id = 4, no condition apply
I need in the result the following with 1 or 2 random static flags:
id 1 2
-----------------
1 1
2 2
3 1 2
I know it sounds messy, I am not even sure it's possible to do it
Thanks a lot :)
UNIONmethod? One option could beWHERE c1 AND ((c2 AND c3) OR (c4 AND c5))and then putCASE WHEN (c2 AND c3) THEN 0 ELSE 1 ENDin a SELECT. BUT I suspect that theORin theWHEREclause will degrade performance, not improve it, and so usingUNIONwill be better. – Dems Nov 29 '12 at 11:27SELECT id, MAX(CASE WHEN newField = 1 THEN 1 ELSE 0 END) AS matchesClause1, MAX(CASE WHEN newField = 2 THEN 1 ELSE 0 END) AS matchesClause2 FROM (Query1 UNION Query2) AS result GROUP BY id[If you have a query that is not returning the results your desire please include that query in your answer, as otherwise we are guessing as to the true nature of your problem.] – Dems Nov 29 '12 at 11:35