Hi all,
My tables are:
COUNTRY COLOR COUNTRY_COLOR
======== ======== ==============
ID NAME ID NAME COUNTRY_ID COLOR_ID
== ==== == ==== ========= =======
1 Israel 1 BLUE 1 1
2 France 2 WHITE 1 2
2 1
They represent countries and their flags' colors.
I need to get all countries that their flag contains a given array of colors.
For example: given the array (1) the countries to be retrieved are Israel and France,
and given the array (1, 2) the country to be retrieved is Israel only.
In short, each value in the given array must exist in the relation table for the a country so it would be retrieved.
Suppose my colors array is (1, 2), this is my query (I do not work directrly with the relation table):
SELECT C.ID
FROM COUNTRY C
WHERE C.ID IN
(
SELECT CC1.COUNTRY_ID
FROM COUNTRY_COLOR CC1
WHERE 1 IN
(SELECT CC2.COLOR_ID
FROM COUNTRY_COLOR CC2
WHERE CC2.COUNTRY_ID = CC1.COUNTRY_ID)
AND
2 IN
(SELECT CC2.COLOR_ID
FROM COUNTRY_COLOR CC2
WHERE CC2.COUNTRY_ID = CC1.COUNTRY_ID)
AND
CC1.COUNTRY_ID = C.ID
)
First of all, I am not sure that I have created the most optimized query, I am sure that it is pretty cumbersome.
Second, this is a specific example, I could have an array of ten colors (in theory, of course)
And third, I would like to know if there is a way to achieve this query in LLBLGen
Thanks in advance