I am looking at recursive cte and saw this example

I have googled but can't see what cnt(x) actually signifies - cnt is
not a function - could someone point me to a resource so I can
understand this construct

Thanks

WITH RECURSIVE
  cnt(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM cnt WHERE x<1000000)
SELECT x FROM cnt;
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to