Substr: retrieve a portion of the string
SQL> -- Substr: retrieve a portion of the string.
SQL>
SQL> -- SUBSTR(string, start_at_position, number_of_characters_to_retrieve)
SQL>
SQL> SELECT SUBSTR('Mississippi', 5, 3) FROM dual;
SUB
---
iss
Related examples in the same category