blob: 7635ba2d17a290102bb6e4dc63a892c536a8d0fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* syntax version 1 */
/* postgres can not */
$foo = CAST(Unicode::ToLower("PLATO"u) AS String);
use yt:$foo;
insert into Output
select *
from Input
where key < "100"
order by key;
|