yql-5833-table_content.sql 188 B

12345678910111213
  1. /* postgres can not */
  2. use plato;
  3. $max_key = (
  4. select
  5. max(key)
  6. from Input
  7. );
  8. select
  9. cast(count(*) as String) || ' (' || cast($max_key as String) ||'/24)'
  10. from Input
  11. where key = $max_key;