SQL Dapatkan Karakter di Indeks

SELECT SUBSTRING('hello', 2, 1)
// answer is "e"
// this is 1-indexed, take care
Proton