Into Helper
The into function is used to extract the resulting rows from a subquery or from a select into statement.
Fetch Function
var fetch = (count,rows,stmt) =>
(count && rows.next() && Array.apply(null,Array(stmt.getColumnCount())).map((_,i)
=> rows.getColumnValue(i + 1))) || [];Into Sample Usage
-- Additional Params: -t JavaScript
REPLACE PROCEDURE SubQuerypoc ()
BEGIN
DECLARE monat INTEGER;
SET monat = (SELECT column1
FROM table1);
END;Into Helper function Definition
Known Issues
Related EWIs
Last updated
