SELECT
People.Name, People.Secondname
CONCAT(People.Name," ", People.Secondname)
FROM People, Shop, Circus
WHERE CONCAT(People.Name," ", People.Secondname) != Shop.Buyer
AND CONCAT(People.Name," ", People.Secondname) != Circus.Watcher
Ok, so this is my question. There are 2 columns. I have concat'ed them and want to find list of people who havent been in Shop AND Circus. Like: I have concated full name - "Jhon Jhonson". He havent been in circus and havent been in shop. So i want him to be shown.
Becouse I cant publish picture here, at least i can get link of table i am trying to make... http://imm.io/1k5tJ I hope you can decipher what I want to say.