blob: c00407dfdc1eb13978096b428383d38954fdf35a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* postgres can not */
/* syntax version 1 */
use plato;
pragma OrderedColumns;
define subquery $select_star($table) as
select * without subkey from $table;
end define;
select * from $select_star("Input");
|