oracle last character of string

Solutions on MaxInterview for oracle last character of string by the best coders in the world

showing results for - "oracle last character of string"
Jonathan
19 Sep 2020
1SELECT substr('My name is Bond', -1) FROM DUAL;		-- d
2SELECT substr('My name is Bond', -4) FROM DUAL;		-- Bond