[Racine des codes] [Page précédente]

MS-SQL - case sensitive comparaison

/SQL/MS-SQL - case sensitive comparaison.sql
update contact set co_prenom='Nathalie' where co_id in
(
select top 200 co_id
--, co_prenom
from contact where co_prenom = 'NATHALIE' COLLATE SQL_Latin1_General_CP1_CS_AS
)
[edit]