lib1.sql.txt 142 B

1234567
  1. use plato;
  2. define action $action($table) as
  3. select key,count(*) as cnt from $table group by key order by key;
  4. end define;
  5. export $action;