我正在尝试INSTR
在 SQLite 中使用函数,但如果我使用 UTF8 字符,它会返回错误的值。我怎样才能避免这个问题?
select instr('akçe', 'a'); --returns 1 (Correct)
select instr('akçe', 'k'); --returns 2 (Correct)
select instr('akçe', 'ç'); --returns 0 (Wrong)
select instr('akçe', 'e'); --returns 3 (Wrong)