Hello, I have 2 tables and I want to update the 2nd table with a column called "flag" with 1 if there is a match between the two tables.
This is what I have so far...
update table2 set FLAG = 1 where...
I joined the tables with the primary key. But it did not work.
Thanks for any help in advance.
This is what I have so far...
update table2 set FLAG = 1 where...
I joined the tables with the primary key. But it did not work.
Thanks for any help in advance.