blob: 4f3924af4c4c263e0cc0d9cf1598d620f32f250b (
plain) (
blame)
1
2
3
4
5
6
7
|
use plato;
$a = select key from Input order by key limit 1;
insert into Output1 select * from Input where key <= $a;
insert into Output2 select * from Input where key >= $a;
|