I have some messy data in a table called AVAILABLE_TEMPLATES. Here's a simple example:
TEMPLATE_GROUP TEMPLATE_NAME LOCALE
-------------- ------------- ------
RO LTRU fi_FI
RO LTRU se_SE
RO LTRU en_US
BL V1PRO se_SE
BL V1PRO en_US
I have another table containing locales called SYSTEM_LOCALES.
SYS_LOCALE
------
lv_LV
fi_FI
sv_SE
en_US
The data that I'm looking to get by joining these two table should have a cartesian product of the rows in the SYS_LOCALE table and the distinct TEMPLATE_GROUP/TEMPLATE_NAME from the AVAILABLE_TEMPLATES table.
Our default locale is fi_FI. For each TEMPLATE_NAME in a TEMPLATE_GROUP, I would like to check if a matching locale is available, if it is, it should be returned as USE_LOCALE. If a matching locale is not found, I'd like to return the system's default locale i.e. fi_FI if it exists for the TEMPLATE_NAME and TEMPLATE_GROUP as USE_LOCALE.
Here's what joining the two tables should return:
TEMPLATE_GROUP TEMPLATE_NAME SYS_LOCALE USE_LOCALE
----------- ------------- ------ ----------
RO LTRU lv_LV fi_FI --There's a fi_FI locale but no lv_LV
RO LTRU fi_FI fi_FI
RO LTRU se_SE se_SE
RO LTRU en_US en_US
BL V1PRO lv_LV NULL --There's no lv_LV or a fi_FI locale
BL V1PRO fi_FI NULL --There's no fi_FI locale
BL V1PRO se_SE se_SE
BL V1PRO en_US en_US
I haven't been able to figure this one and have been quite lost wit it. Would it have to be done with recursion? Thanks
TEMPLATE_NAMEvalues for a givenTEMPLATE_GROUP(or vice versa), or is there a one-to-one correspondence between these two values? Also, do you have a separate table for template/template group values (apart fromAVAILABLE_TEMPLATES) ? – Mark Bannister Mar 4 at 13:46