Hi folks. I know that there are 2 basic ways of inserting data in a table:INSERT INTO MyTable (PriKey, Description) VALUES (123, 'A description of part 123.')
orINSERT INTO MyTable (PriKey, Description) SELECT ForeignKey, Description FROM SomeView
I'd like to know if there is any way of combining the 2 ways in one single insert statement such as:INSERT INTO MyTable (PriKey, Description) ((SELECT ForeignKey FROM SomeView), 'My custom description'))
I tried playing with the above with no success.