I have an issue where this code is giving me an issue:
SELECT ID, UPPER(ItemDescription)
FROM ItemDescriptions
WHERE ItemDescription = 'ß'
ORDER BY ItemDescription
Now this query still returns 'ß'
In Python if I uppercase this character as such:
'ß'.upper()
This returns 'SS'.
The problem is when I have dictionary that contains a string with that character so it doesn't match when I pair the 2 up. Any pointers on this would be appreciated.