Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 246 Bytes

CALL.md

File metadata and controls

16 lines (13 loc) · 246 Bytes

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)');