I want to update my column CODE_DEST with an incremental number. I have:
CODE_DEST RS_NOM null qsdf null sdfqsdfqsdf null qsdfqsdf >
One more option
UPDATE x SET x.CODE_DEST = x.New_CODE_DEST FROM ( SELECT CODE_DEST, ROW_NUMBER() OVER (ORDER BY [RS_NOM]) AS New_CODE_DEST FROM DESTINATAIRE_TEMP ) x