Reputation: 33
I'm using SQL Server 2016 and my database has the Arabic_100_CI_AS
collation. I inserted apple emojis in my database, but some of the emojis are equal in comparisons while other emojis are not equal. I resolved this problem with collate Arabic_BIN
and I asked in this topic
But I have new problem with Arabic_BIN
Collation:
For example I can't recognize some of emojis with this query:
SELECT [EMoji_ID]
FROM [Emojies].[dbo].[Emojies]
WHERE Emoji_Emoji = N'❤' COLLATE Arabic_BIN
The above query returns any ID, but this query returns ID:
SELECT [EMoji_ID]
FROM [Emojies].[dbo].[Emojies]
WHERE Emoji_Emoji = N'❤'
Upvotes: 1
Views: 183