Hi! Could we please enable some services and cookies to improve your experience and our website?

SQLize | PHPize | SQLtest

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

A A A
Login    Share code      Blog   FAQ
Copy Format Clear
-- recursive CTE with numbers (num, lvl) as ( select 0 num , 1 lvl from dual union all select num + round(dbms_random.value(2,10)) , lvl + 1 from numbers where lvl <= 99 ) select trunc(sysdate) + num as dates from numbers;

Stuck with a problem? Got Error? Ask AI support!

Copy Clear