I am trying to update a table with a values from another table using a store procedure. Can any one tell me the syntax please
Here is what I am trying to do
Update tbl1 set tbl1.address = tbl2.address where tbl1.cuid = tbl2.cuid
How can I put this in stored procedure an create a job?
Please help.