Hey guys i am quite a newbie here, what i am trying to do is i am trying to copy data (skills) column from one temp table to another table where id=1;
now Table one called skillmapping has candidateId and skillName columns
Table2 has only skillName column
I am trying to insert data from Table 2 to Table 1 where the canidateId=1
Please help me with this. i tried copy data but seems like error for candidateId.. thanks.
I tried this but says incorrect syntax
insert into candidateComputerSkillMapping(skillname) values(select * from tempComputerSkillMap)
Thanks for All the answers guys, i guess columns on both tables should be same i mean both should have an id and skillName then only we can copy right.. thanks anyways,