Skip to content

Expression Statement

Andrey Gershun edited this page May 28, 2015 · 5 revisions

Expression Statement (=)

In AlaSQL you can use expression statement starting with =.

Syntax:

    = expression

For example:

   alasql('= 2*2');

returns 4

And with internal subqueries:

    alasql(' = (SELECT 2) * 2');

returns 4

See also: SELECT

Clone this wiki locally