内容简介:http://stackoverflow.com/questions/43474596/in-sql-server-database
在我的数据库中我有这个char .我想查询他们
Select * from Sometable where somecolumn like '%�%'
这让我没有结果.
我认为这是ANSI编码
使用N如下
where col like N'%�%'
why do you think ,you need N
prefix
:
Prefix Unicode character string constants with the letter N. Without the N prefix, the string is converted to the default code page of the database. This default code page may not recognize certain characters.
感谢马丁·史密斯,早些时候我只测试了一个字符,它的工作,但正如马丁指出,它返回所有字符..
以下查询工作和返回只有意图
select * from #demo where id like N'%�%' COLLATE Latin1_General_100_BIN
演示:
create table #demo ( id nvarchar(max) ) insert into #demo values (N'ﬗ'), ( N'�')
要了解更多关于unicode,请看下面的链接
http://stackoverflow.com/questions/43474596/in-sql-server-database
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 4 万字全面掌握数据库、数据仓库、数据集市、数据湖、数据中台
- Python3爬虫数据入数据库---把爬取到的数据存到数据库,带数据库去重功能
- Oracle数据库查询重复数据及删除重复数据方法
- sqlserver数据库获取数据库信息
- 从大数据到数据库
- node连接oracle数据库,更新数据后,数据库中不生效问题
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。