select_plain.sql 442 B

12345678910111213141516
  1. /* postgres can not */
  2. /* syntax version 1 */
  3. use plato;
  4. pragma OrderedColumns;
  5. select * from Input order by subkey;
  6. select * without key from Input order by subkey;
  7. select a.* from Input as a order by a.subkey;
  8. select a.* without key from Input as a order by a.subkey;
  9. select 1 as z, 2 as x, a.* from Input as a order by a.subkey;
  10. select 1 as z, 2 as x, a.* without key from Input as a order by a.subkey;
  11. select 1 as c, 2 as b, 3 as a;