Answer the question
In order to leave comments, you need to log in
EF core MS SQL Case Sensitive what to set?
For the database set "Cyrillic_General_BIN2" Data type nvarchar(20)
select * from HOUSE_HOUSENUM
where Name ='33_а'
ID Name
6076 33_А
33_а
and 33_A
are different things.
Answer the question
In order to leave comments, you need to log in
SELECT * FROM HOUSE_HOUSENUM
WHERE UPPER( Name ) = UPPER( '33_а' )
COLLATE
SELECT * FROM HOUSE_HOUSENUM
WHERE Name = '33_а' COLLATE Cyrillic_General_CI_AI
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question