fork(1) download
  1. CREATE TABLE financials(amount DECIMAL);
  2. INSERT INTO financials (amount) VALUES(0.2);
  3. INSERT INTO financials (amount) VALUES(0.1);
  4.  
  5. SELECT SUM(amount) FROM financials;
Success #stdin #stdout 0s 4472KB
stdin
Standard input is empty
stdout
0.3