-
Notifications
You must be signed in to change notification settings - Fork 690
Open
Description
I have issues with UNION ALL. I have condensed an example
let d = [{d:1}];
// This works
alasql("create table test");
alasql("select * into test from ?", [d]);
alasql("select d from test where d in (select 1) union all select d from test where d not in (2)");
// This does not work
alasql("create table test");
alasql("select * into test from ?", [d]);
alasql("select d from test where d in (select 1) union all select d from test where d not in (select 2)");Copilot