Simple demo for SUBSTR function : SUBSTR « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- SUBSTR
Simple demo for SUBSTR function
SQL>
SQL>
SQL> SELECT SUBSTR('My address is 123 Fourth St.',1,12) FROM dual;
SUBSTR('MYAD
------------
My address i
SQL>
Related examples in the same category