Answers for "how to substring string in oracle"

SQL
2

plsql left() function

SUBSTR( "20190601", 0, 6 )
Posted by: Guest on May-20-2020
0

oracle right characters

-- For Oracle only

-- syntax 
SUBSTR(<main-string>,-<number-of-characters>)

-- example 
SUBSTR('Useless stuff',-9) -- OUTPUT: ess stuff

-- practical example
SELECT SUBSTR('Useless stuff',-9)
FROM DUAL;
Posted by: Guest on May-12-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language