What would be the best technique to use to insert a row of data retrieved from multiple sources (including textbox, other SQL tables, etc) into another SQL table? Will I need to create an intermediate data structure or is there a way to do it using something like
INSERT INTO Proposal_listing
(company_name, project_name, status_proposal)
SELECT(company_name, project_name, status_pipeline)
FROM Project_Pipeline
WHERE status_pipeline = 'Proposal Phase';
EDIT: For example, if I wanted to take columns A1, B1, C1 from table 1 and values from textbox.text, textbox2.text and insert into columns A2, B2, C2, D2, E2 from table 2.
Thanks
How about trying to integrate your textbox value into your SQL Query. Something like this:
This is all off the top of my head so you might need to play with the syntax, but that’s the general idea.