select_subquery.sql 211 B

1234567891011
  1. /* postgres can not */
  2. /* syntax version 1 */
  3. use plato;
  4. pragma OrderedColumns;
  5. define subquery $select_star($table) as
  6. select * without subkey from $table;
  7. end define;
  8. select * from $select_star("Input");