Third level of subquery result in error
Author: djduarteCreated Jun 29, 2018Updated Sep 10, 2026
LabelsHelp wantedRelated to: SQL complianceBug: Code provided to reproduced
Hi guys, I was working today and just found an problem:
This give me an error:
SELECT (SELECT (SELECT 1 AS c) AS b) as a
But this run just fine:
SELECT (SELECT 1 AS b) AS a
Someone knows how to solve it?
Source: AlaSQL/alasql