Insert Into Select 를 사용하면 서, ColA 는 1로 넣고 싶을 때
아래와 같이 사용하면 된다.
INSERT INTO MyTable
(ColA,
ColB,
ColC)
SELECT 1,
colBB,
colCCFROM MyTable2
응용하여서, 하나의 칼럼에 Constant 값을 넣고 싶으면
Select 문에 넣고 싶은 칼럼에 Constant를 넣으면 됨
출처 : http://stackoverflow.com/questions/4989583/insert-combine-value-and-select