insert SQL pour chaque valeur distincte

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