I have list of strings:
var ids = ["aa", "cc, "bb"];
and I want to insert them into temporary table. This is how I try to do it:
DROP TABLE IF EXISTS Ids;
CREATE TEMP TABLE Ids AS
SELECT Id FROM @ids
however that throws syntax error. How it should be done?