Skip to content
Mathias Rangel Wulff edited this page Jun 12, 2015 · 2 revisions

Keyword `CALL

This statements allows to call procedures from SQL program.

Syntax:

    CALL procedure(arguments...)

For example:

    alasql.fn.log = function(s) {
        console.log(s);
    } 
    alasql('CALL log(10)');
Clone this wiki locally