In my query i want to join two tables based on the value of a field (say field1). Depending on the value of the field1 the join would EITHER be:
field3 = field4 OR field5 = field6
Something like
join on
CASE FIELD1
When 1 THEN FIELD 2 = FIELD3
When 2 THEN FIELD 4 = FIELD5
END
I am doing something like this at the moment
.... join on (field1=1 AND field2=field3) OR (field1=2 AND field4=field5)
but it takes ages to run the query. The two conditions individually take less than 7 secs each
How can i do this?
join on (field1=1 AND field2=field3) OR (field1=2 AND field4=field5)- this is unconventional syntax. What database are you using? Please provide your actual query. – RedFilter Sep 25 '12 at 13:54ORconditions are not easy to optimize and they are usually a symptom of bad design. Can you post the actual tables' structure? – ypercube Sep 25 '12 at 13:58