fork download
  1. create table tbl(str varchar(50));
  2. insert into tbl values('The Sqlite Subtract/Divide Program.');
  3. select * from tbl;
  4. select("A , 100, B ,50, C "),(100 - 50);
  5. select("D , 2500, E , 50, F "),(2500 / 50);
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
The Sqlite Subtract/Divide Program.
A , 100, B ,50, C |50
D , 2500, E , 50, F |50