blob: c9a5dbc8f4cc3d8932ec079456f84d7b8ffc88ba (
plain) (
blame)
1
2
3
4
5
|
use plato;
insert into Output select sum(cast(key as int32)) from Input1;
insert into Output select sum(cast(key as int32)) from Input2;
insert into Output select sum(cast(key as int32)) from Input3;
|