into_result.md 306 B

INTO RESULT

Lets you set a custom 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 `Result name`;