SQL вставка для каждого отличного значения

insert into your_table (col1, col2, col3)
select distinct col1, 'newval', col3
from your_table
DeuxAlpha