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> select decode(dummy,'X',0,1) result from dual;
RESULT
----------
0
SQL> select to_char(decode(dummy,'X',0,1),'099.99') result from dual;
RESULT
-------
000.00
SQL>