Link to home
Start Free TrialLog in
Avatar of zubin6220
zubin6220

asked on

Copy data from one table to another

I have two tables appropriately linked:
tblA
EmpID
Start
End

tblB
EmpID
1st_Start
1st_End

I need to copy data from tblA Start and End fields into tblB 1st_Start and 1st_End.  
tblA.Start = tblB.1st_Start and tblA.End = tblB.1st_End
Not sure on syntax for this.  Thanks
ASKER CERTIFIED SOLUTION
Avatar of dqmq
dqmq
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of zubin6220
zubin6220

ASKER

thank you