Just wondering if someone could help me with a very simple SQL query.
I need to transfer data from table1 to table2 where table1.jobID = table2.jobID
Should I use join ?
I would just like to fill in a NULL column with data from table1, using jobID to match.
Thanks in Advance
AC
With the limited knowledge it sounds like all you need is a simple UPDATE:
If you only want it updated if it is null, then you can do this:
OR, based on your comment, you could do what you have listed, you just need to turn it into a SELECT behind the insert: