hi i have the following query i what to update the value of table based on the value in another table
this my use case
employeetable
empid jobid
001 008
002 003
emp_job
emplid em_jobid
001
002
update emp_job
set em_jobid = --jobid from employeetable
where emplid in('001','002')