Is it possible to insert values using multiple queries for different columns? MS SQL allows to write,
INSERT INTO TABLE1(COL1)
SELECT COL1 FROM TABLE2
But what if I want to insert one data from one table, and another data from another table? Does MS SQL allow it? If so, what is the syntax?