Jump to content

Inserting using select, plus extra data


fry2010

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.