Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个具有 collate nocase 字段的数据库(我无法更改):
name string collate nocase
我需要在这个区分大小写的字段上进行搜索。'collate nocase'可以做到这一点吗?
谢谢
只需将排序规则切换回该查询:
SELECT * FROM MyTable WHERE name COLLATE BINARY = 'Nick'