#oracle To get the last 2 characters from a string in PL/SQL, you can use the SUBSTR function. Here's the syntax:

SUBSTR(string, -2)
 
 
Back to Top