Insert record using Select Statement based on Condition

Rajesh_Kumar
Posted by Rajesh_Kumar under Sql Server category on | Points: 40 | Views : 1204
insert into requisition_details(req_id,cv_id,candidate_name,candidate_contact_number) 
select requisition_id,profile_id,candidate_full_name,candidate_contact_no
from requisition_master where requisition_id = 205;

Comments or Responses

Login to post response