---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ydb.tech/docs/en/yql/reference/syntax/into_result.md?version=main
  - https://ydb.tech/docs/ru/yql/reference/syntax/into_result.md?version=main
sourcePath: en/core/yql/reference/syntax/into_result.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ydb.tech/docs/en/llms.txt

# INTO RESULT

Lets you set a custom label for [SELECT](https://ydb.tech/docs/en/yql/reference/syntax/select/index.md?version=main).


## Examples

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

```yql
SELECT * FROM
my_table
WHERE value % 2 == 0
INTO RESULT `Result name`;
```
