action_nested_query.sql 179 B

12345678910
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. use plato;
  4. define action $action() as
  5. $sub = (select * from Input);
  6. select * from $sub order by key;
  7. end define;
  8. do $action();