Answers for "oracle last character of string"

SQL
0

oracle last character of string

SELECT substr('My name is Bond', -1) FROM DUAL;		-- d
SELECT substr('My name is Bond', -4) FROM DUAL;		-- Bond
Posted by: Guest on June-25-2021

Code answers related to "oracle last character of string"

Code answers related to "SQL"

Browse Popular Code Answers by Language