> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> LineAsStringWithNames 포맷 문서

# LineAsStringWithNames

| 입력 | 출력 | 별칭 |
| -- | -- | -- |
| ✗  | ✔  |    |

<div id="description">
  ## 설명
</div>

`LineAsStringWithNames` 포맷은 [`LineAsString`](/ko/reference/formats/LineAsString/LineAsString) 포맷과 비슷하지만, 컬럼 이름이 포함된 헤더 행을 출력합니다.

<div id="example-usage">
  ## 사용 예시
</div>

```sql title="Query" theme={null}
CREATE TABLE example (
    name String,
    value Int32
)
ENGINE = Memory;

INSERT INTO example VALUES ('John', 30), ('Jane', 25), ('Peter', 35);

SELECT * FROM example FORMAT LineAsStringWithNames;
```

```response title="Response" theme={null}
name    value
John    30
Jane    25
Peter    35
```

<div id="format-settings">
  ## 포맷 설정
</div>
