Hi when I use this query I don’t get any result.
In my table I have used collation Macedonian_BIN so the letters are in Macedonian Language.
What I need to do this code to work, it doesn’t compare 2 values
For example
НОВ=НОВ
The ed is getting the value HOB I guess the problem is when is comparing the HOB value with the HOB in database
select * from Publisher where Motor like '%" + ed + "%'
You can explicitly add the COLLATE keyword to change the default collation as follows:
(substitute your desired collation)