Hello Experts,
I have User Table. In this table i am storing English and Korean data, i have also taken Nvachar for the unicode support.
The Problem is whenever i am applied search in Korean Data, Its not returning the Proper data from SQL server.
Please Suggest.
Loading
Sukesh MarlaPosted Sep 28, 2012, 2:53 AM
Your Insert and Select Query both must have N
CREATE TABLE t (col1 nvarchar (30));
INSERT INTO t VALUES (N'?????');
SELECT *
FROM t
WHERE col1 LIKE N'%??%';
Check this is correct answer if it helped
Ritesh DiyawarPosted Sep 28, 2012, 12:09 AM
Thanks for u r Reply, i am writing query as u told , but still does't make any difference :
here is Example :
select * from [User] where DisplayName like N'%?%'
Sukesh MarlaPosted Sep 27, 2012, 1:31 PM
Try this one
Check this is correct answer if it helped.