> ## 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.

> Documentation sur le format LineAsStringWithNames

# LineAsStringWithNames

| Entrée | Sortie | Alias |
| ------ | ------ | ----- |
| ✗      | ✔      |       |

<div id="description">
  ## Description
</div>

Le format `LineAsStringWithNames` est similaire au format [`LineAsString`](/fr/reference/formats/LineAsString/LineAsString), mais affiche la ligne d’en-tête contenant les noms des colonnes.

<div id="example-usage">
  ## Exemple d’utilisation
</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">
  ## Paramètres de format
</div>
