Jump to content

Inserting using select, plus extra data


fry2010

Recommended Posts

I wondered if it is possible to perform a statement that does a select insert with extra parameters included. Eg:

 

Combine these two queries:

 

INSERT INTO `table1` SELECT `val1`, `val2` FROM `table2`;

INSERT INTO `table1` VALUES (`val3`, `val4`);

Link to comment
Share on other sites

If you are talking about adding literal values, then yes, you can do that too. You can add literals to any select:

 

INSERT INTO tableName (col1, col2, col3, col4)
SELECT someCol1, someCol2, 'Literal Value', 123 
FROM tableName2

 

For every row in tableName2, insert a row into tableName; assigning someCol1 to col1, and someCol2 to col2; and also assign "Literal Value" to col3 and 123 to col4 in every row inserted

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.