fork download
  1. create table std(id int,age int,sal int);
  2. insert into std values(1,2,3),(6,4,3);
  3. select * from std;
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
1|2|3
6|4|3