globalefekt
Programmer
I have a php script browsing a field from table 1, after user selects one the scripts adds selected field to another table. Now I dont want to browse already added fields. I have a query like this:
select table1.f1, table1.f2 from table1, table2 where (table1.f1=32 and table1.f3<>table2.f4)
Why this doesnt work??? it returns all fields (multiplying number of all records)!
I want fields from table 1 which does not exist in table 2...
What am I doing wrong....It looks so simple but I cant see the problem...
thanks folks...
select table1.f1, table1.f2 from table1, table2 where (table1.f1=32 and table1.f3<>table2.f4)
Why this doesnt work??? it returns all fields (multiplying number of all records)!
I want fields from table 1 which does not exist in table 2...
What am I doing wrong....It looks so simple but I cant see the problem...
thanks folks...