fork download
  1. create table foo(a integer, b integer, c integer);
  2. insert into foo values('hui', 'pizda', 'djigurda');
  3. select a, b, c, a+b from foo;
Success #stdin #stdout 0s 3008KB
stdin
Standard input is empty
stdout
hui|pizda|djigurda|0