I have two tables, the first one has 4 columns like:
ID NAME COUNTRY FILTERID
and the second one has 2 columns like:
ID COUNTRY
I want to use this query:
SELECT F.Name
FROM First as F, Second AS S
WHERE F.Filterid = S.S_Id
AND F.Country = S.Country
S.Country contains Japan,Usa, but F.Country have only Japan.
Please suggest solution.


INSTRfunction), but I would probably recommend a more fundamental redesign, as havingS.Countrycontain "Japan,Usa" suggests a curious data model. If you described the business problem, we might be able to recommend more robust data models. – Rob Jan 12 at 14:54