What I want to do is compare two tables, and perform an update in tableb where column doesn’t match the same column.
I know in SQL this is
update tableb
set myInt = 1
where tableA.Column <> tableb.column
How is this done is MySQL?
Basically all I want to do is where tableA doesn’t have the same value in tableB update tableB.
Use:
…which can also be written as: