xxxxxxxxxx
-- substr(string, start, [, length ])
SELECT substr('Hello World', 1, 3) ; -- Hel
SELECT substr('Hello World', 4, 5) ; -- lo Wo
SELECT substr('Hello World', 4); -- lo World
SELECT substr('Hello World', -3); -- rld
xxxxxxxxxx
SELECT SUBSTRING(your String here, Int Start, String length) AS OutPutString;