SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
with recursive factorial as ( select 0 as n, 1 as f union all select f.n + 1, f.f * f.n + 1 from factorial f where f.n < 10 ) select * from factorial ; show status like 'Last_query_cost';

Stuck with a problem? Got Error? Ask ChatGPT!

Copy Clear