scalar_subquery_with_star.sql 157 B

1234567
  1. /* postgres can not */
  2. /* syntax version 1 */
  3. $single = (select key from plato.Input);
  4. $all = (select * from $single order by key limit 100);
  5. select $all;