I have a little program that lifts all the installed software on windows computers and dump is to my linux server to be sorted and put in a database. I used some regex to lift out various updates and put them in a different table because i don't want them in the software table! Anyway, it seems to have gone a bit wrong because I have 332 out of 203 updates showing on some computers. The known updates are got from data from all the computers. So...question, i have two tables,
installed_updates (id, computer, update) and known_updates (update)
what sort of fun SQL query do I need run to see what ones are in installed_updates (update) that aren't in known_updates(update) for a given computer.
I tried
CODE
SELECT * FROM `installed_updates` WHERE `computer`='CP010' AND `update`!=`known_updates`.`update`;
It didn't work...I didn't really expect it to!
Help muchly appreciated!

Graham