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