blob: 472917fe5fe47b6b57d902f1233979b7d5729019 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* postgres can not */
/* syntax version 1 */
use plato;
insert into @tmp with truncate
select Just(Just(key)) as key from Input;
commit;
$key = select key from @tmp;
select * from Input where key = $key;
|