Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
I've proposed a solution below (using INSTR function), but I would probably recommend a more fundamental redesign, as having S.Country contain "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

3 Answers

up vote 0 down vote accepted

You can use JOINS if you are using sql For e.g. Select * from table_one as one INNER JOIN(you must know the different joins purposes before using joining the tables for reference here) table_two as two ON one.some_value_of_column_in_table_one = two.some_value_of_column_in_table_two Thanks.

share|improve this answer
1  
I'm Using Sqlite. – Nilesh Jan 12 at 10:43
In sql lite also JOINS are possible...... Check out this @Nilesh zetcode.com/db/sqlite/joins – NetStarter Jan 12 at 10:48
1  
I already use Join but the problem is that S.country=India,Indore & F.Country=India so how can I get that particular value. – Nilesh Jan 12 at 10:52
then why don't you use a common column in both the tables as a config column which you can use to make a join possible. – NetStarter Jan 12 at 10:59
1  
@nilesh if you are having only country name in one table like India and in other table you are having India,Indore then you can join the table like this SELECT * FROM table_one one INNER JOIN table_two two ON two.Country LIKE one.Country – NetStarter Jan 12 at 11:19
show 2 more comments

For this, you have to write JOIN query as you want to get items from two tables....

You can use like,

SELECT F.Name FROM First F JOIN Second S ON F.Country=S.Country

share|improve this answer
I already use join but the problem is that S.Country contain India,Indore & F. Country contain only India so this query isn't working for me. – Nilesh Jan 12 at 10:42
The problem is that S.country=India,Indore & F.Country=India so how can I get that particular value. – Nilesh Jan 12 at 10:48
Try by removing where part.... Except it in the query.... – Goti Jan 12 at 10:51

If one country field is a substring of another, use the INSTR function:

SELECT F.Name FROM First AS F, Second AS S WHERE F.Filterid=S.id AND INSTR(S.Country, F.Country) > 0

This will return records if F.Country occurs within S.Country (and, obviously, also if the F.Filterid=S.id, as per your original SQL).

Or you can structure this as a JOIN, too:

SELECT F.Name FROM First AS F JOIN Second AS S ON F.Filterid=S.id AND INSTR(S.Country, F.Country) > 0
share|improve this answer
By the way, I notice that the other answers have dropped the F.Filterid=S.id clause. If you decided that that clause was not necessary, then the SQL would just be SELECT F.Name FROM First AS F JOIN Second AS S ON INSTR(S.Country, F.Country) > 0 – Rob Jan 12 at 15:10
But it gives error near instr function – Nilesh Jan 12 at 15:29
@Nilesh Can you paste your SQL here? When I use the above SQL in your simplified example, it works fine. – Rob Jan 12 at 15:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.