I am maintaining an old system where the structure and the design of the tables are not created correctly. I know this is an "ugly" situation but I need to deal with it.
I have a table TABLEA containing multiple fields. Two of them represents the MODEL (MODEL1 and MODEL2). Based on status (STATUS), MODEL1 and MODEL2 have the following values:
- STATUS = "A" THEN MODEL1="the model" AND MODEL2=""
- STATUS <> "A" THEN MODEL1="" AND MODEL2="the model"
I need to perform a query where I am joining TABLEA with another table TABLEB on the model. According to the status, I need to join the tables with the non-empty model field.
I could resolve it by concatenating MODEL1 and MODEL2:
SELECT *
FROM TABLEA A INNER JOIN TABLEB B
ON (A.MODEL1 || A.MODEL2) = B.MODEL;
but I am wondering if there is an elegant way to do it using an IF condition. Any other solution is welcome.
I like jmarkmurphy's solution better, but here is another option, by using left joins.
But, if at all possible, a chang in schema is the best option:
Adding a new a.model column with all nonempty values of both model1 and model2 and join on it.
Using a materialized view like:
SELECT a.*, CASE WHEN a.model1 = '' THEN a.model2 ELSE a.model1 END AS model
FROM tablea a
If there are no indexes on a.model1 or a.model2 which can improve query performance, you can use the previous view as a nonmaterialized, possibly inline, view.