There was an error while loading. Please reload this page.
GO
Syntax:
operator1 GO operator2
In AlaSQL all stetements san be separated with ;(semicolon) or with GO keyword:
;
SELECT * FROM one; SELECT * FROM two GO SELECT * FROM three
In case of multiline stetement alasql() stores all results into array with results:
alasql()
var res = alasql('SELECT 10'); // returns [{'10':10}] var res = alasql('SELECT 10 GO SELECT 20'); // returns [ [{10:10}], [{20:20}] ]
Quick links
AlaSQL wiki frontpage
About AlaSQL
Install AlaSQL
Get started with AlaSQL