I am working on a simple DB and while I am a NOOB I have an update string where table 'employee' updates properly, table 'job' changes all values to the same except primary key.
UPDATE employee,job
SET employee.name='name', employee.vorname='vorname',
employee.strasse='strasse' , employee.haus_nr='haus_nr',
employee.platz='platz', employee.stadt='stadt',
employee.telefon='telefon', employee.emp_nr='emp_nr',
job.emp_nr='emp_nr', job.job='job', job.lohn='lohn'
WHERE employee.emp_nr=emp_nr AND job.emp_nr=emp_nr
So in end effect all of the entries in 'job' will have the same emp_nr, the same job and the same lohn.