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 test_it
2 ( amount number
3 );
SQL> insert into test_it values('14');
SQL> insert into test_it values('38.29');
SQL> insert into test_it values('7503.46');
SQL> insert into test_it values('0');
SQL>
SQL> select to_char(amount,'999,990.99') AMOUNT
2 from test_it
3 order by amount;
AMOUNT
-----------
0.00
14.00
38.29
7,503.46
select * from Life where Brain is not null