I have 2 tables set up with names, Im trying to query the first table, then
run a second query on another table
to find any names that werent in the first table......like this.
$query = "select name from mod_sced ;";
do stuff.....
Now..I do the other query to get any names that were not in the mod_sced
table.
$query = "select name from master_sced where name!='$name';";
problem is the second query pulls all the names that were in the first query
except for the last. I cant have duplicate names.
I cant figure this out. Can anyone gimme some tips?
Is there an easier way to do something like this? THANKS! =PP