There are ways of inserting data into table:
insert into MyTable (ColA, ColB, ColC) values (\'A\', \'B\', \'C\') insert into MyTable (ColA, ColB, ColC) sele
Just add a constant into the SELECT list
SELECT
INSERT INTO MyTable (ColA, ColB, ColC) SELECT 1, colBB, colCC FROM MyTable2