blob: 53001bf902b89ba8f6117b8f230237c057e9f38e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* postgres can not */
/* multirun can not */
USE plato;
insert into Output
select * from plato.Input where value != "111" limit 3;
commit;
insert into Output
select * from plato.Input order by value;
|