SQL Get Character at index

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