query substring sql code example
Example 1: sql substring
SUBSTRING(string, start, length)
Example 2: sql substring
-- substr(string, start, [, length ])
SELECT substr('Hello World', 4, 5) ; -- lo Wo
SELECT substr('Hello World', 4); -- lo World
SELECT substr('Hello World', -3); -- rld