with_rec_trivial.sql 70 B

12345
  1. --!syntax_pg
  2. WITH RECURSIVE t(n) AS (
  3. select 1
  4. )
  5. SELECT n FROM t;