WITH clause in SELECT statement
Posted: Wed 28 May 2014 09:42
Hi,
does LiteDAC support the WITH clause in a SELECT statement?
WITH RECURSIVE
cnt(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM cnt WHERE x<1000000)
SELECT x FROM cnt;
Best regards
Rolf Schlueter
does LiteDAC support the WITH clause in a SELECT statement?
WITH RECURSIVE
cnt(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM cnt WHERE x<1000000)
SELECT x FROM cnt;
Best regards
Rolf Schlueter