INTO RESULT

Lets you specify the user label for SELECT, PROCESS, or REDUCE. It can't be used along with DISCARD.

Examples:

SELECT 1 INTO RESULT foo;
SELECT * FROM
my_table
WHERE value % 2 == 0
INTO RESULT `Name of the result`.
Previous
Next