Jag tror du menar UPDATE
och inte INSERT
:
UPDATE MyTable
SET ColumnName = CASE WHEN ColumnPosition = 'Col 1' THEN 'Name'
WHEN ColumnPosition = 'Col 3' THEN 'Address'
-- ... the rest of your conditions
ELSE -- put your default value here
END