In a MySQL database of ancient Greek words (collated in utf8mb4_unicode_ci) I am trying to detect which words are starting with a capital and in that case add the value 1 to a field include. I have tried several options using binary, e.g.
UPDATE word
SET include = 1
WHERE LEFT(`lemma`, 1) REGEXP BINARY '[Α-Ω]'
But also other solutions with UPPER etc. None works. Any ideas?