---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ytsaurus.tech/docs/en/yql/syntax/into_result.md
  - https://ytsaurus.tech/docs/ru/yql/syntax/into_result.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ytsaurus.tech/docs/en/llms.txt


# INTO RESULT

Lets you specify the user label for [SELECT](https://ytsaurus.tech/docs/en/yql/syntax/select/index.md), [PROCESS](https://ytsaurus.tech/docs/en/yql/syntax/process.md), or [REDUCE](https://ytsaurus.tech/docs/en/yql/syntax/reduce.md). It can't be used along with [DISCARD](https://ytsaurus.tech/docs/en/yql/syntax/discard.md).

## Examples

```yql
SELECT 1 INTO RESULT foo;
```

```yql
SELECT * FROM
my_table
WHERE value % 2 == 0
INTO RESULT `Name of the result`.
```


