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
Tuesday, August 15, 2006
Function TRIM examples
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment