Choose Category
SUBSTR(string Input,int Start,[int Length])
SUBSTR('abcdef',3) Output ---------- cdef
SUBSTR('abcdef',3,2) Output ---------- cd
SUBSTR('abcdef',-3,3) output --------- def