Online SQLite Compiler
create table calc(x int, y int); insert into calc values(20, 30); select x,y, (x+y) from calc;
Output Results
20|30|50
create table calc(x int, y int); insert into calc values(20, 30); select x,y, (x+y) from calc;
Output Results
20|30|50