I have two table that have a field call name I would like to compare them to see the names that do not match up. One table has 5100 and the other table has 3100 I need the 2000 name that is in the first table and not in the other table, I have tryed unmatch query and get nothing and I have a made a sql with this in it
SELECT Query1.Expr1
FROM MAILnet INNER JOIN Query1 ON MAILnet.name = Query1.Expr1;
but I dont know how to make it not equal instead of =
Thank you for your help
SELECT Query1.Expr1
FROM MAILnet INNER JOIN Query1 ON MAILnet.name = Query1.Expr1;
but I dont know how to make it not equal instead of =
Thank you for your help