I have two tables with one shared column. One other column in table 2 is empty but has to get filled with a value from one column in table 1.
select * from tbl1, tbl2 where tbl1.column = tbl2.column;
Above query gives me the results that need to be updated. What will the update statement look like?