SQL> select trim('*' from '***comments***') from dual;
TRIM('*'
--------
comments
SQL> select trim(leading '*' from '***comments***') from dual;
TRIM(LEADIN
-----------
comments***
SQL> select trim(trailing '*' from '***comments***') from dual;
TRIM(TRAILI
-----------
***comments
SQL> select trim(both '*' from '***comments***') from dual;
TRIM(BOT
--------
comments
Everything Changes
1 week ago
No comments:
Post a Comment