Wkładka SQL dla każdej odrębnej wartości

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