Hi.
I got two tables ('table1', 'table2'). Now I want to select all entries in 'table1' for which is set a specific value in 'table2'.
Ex:
'table1':
id | fid | text
1 1 bla
2 1 foo
3 2 blu
'table2':
id | fid | check
1 1 ok
2 1 ok
3 1
Means I want to get all results from table1 which got e.g. fid=1 and check=ok.
How would I do that? Thanks.