2019年10月1日 星期二

[SQL Server] SQL語法 Where 條件查詢簡體中文問題

很基本的常識:

資料庫的欄位為 nvarchar
以下SQL語法查詢時簡體中文會查不到資料

select *
   from xxxx
 where col like '%%'

Sql語法中如要查詢 utf-8的欄位須加上 N

select *
   from xxxx
 where col like N'%%'