Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SQL> create table ksnpc (x clob);
Table created.
SQL> insert into ksnpc values ('123456789Last10chrs');
1 row created.
SQL> select substr(x,-10) from ksnpc;
SUBSTR(X,-10)
------------------------------------------------------
Last10chrs