I would like to Insert a record in a table if
a variable is not equal the same column in another table. Something like:
Insert IGNORE INTO newtable
SELECT * FROM oldtable
WHERE url="www.theurl.com/1" AND
(field CoolThing from newtable != CoolThing from oldtable)
So CoolThing
is a field (column).
Try with: