I would like to insert data from specific fields from one table in another table + some static values. Roughly I would like to do this:
INSERT INTO TableA(Field1, Field2, Field3)
SELECT Field1, Field2, 'staticvalue', Field3
FROM TableB
WHERE TableB.Field6 = 'XYZ'
Any idea how can I mix both specific fields from one table and static values?