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

> System table containing descriptions of table engines supported by the server and the features they support.

# system.table_engines

<h2 id="description">
  Description
</h2>

Contains description of table engines supported by server and their feature support information.

This table contains the following columns (the column type is shown in brackets):

* `name` ([String](/reference/data-types)) — The name of table engine.
* `supports_settings` ([UInt8](/reference/data-types)) — Flag that indicates if table engine supports SETTINGS clause.
* `supports_skipping_indices` ([UInt8](/reference/data-types)) — Flag that indicates if table engine supports skipping indices.
* `supports_projections` ([UInt8](/reference/data-types)) — Flag that indicated if table engine supports projections.
* `supports_sort_order` ([UInt8](/reference/data-types)) — Flag that indicates if table engine supports clauses PARTITION\_BY, PRIMARY\_KEY, ORDER\_BY and SAMPLE\_BY.
* `supports_ttl` ([UInt8](/reference/data-types)) — Flag that indicates if table engine supports TTL.
* `supports_replication` ([UInt8](/reference/data-types)) — Flag that indicates if table engine supports data replication.
* `supports_deduplication` ([UInt8](/reference/data-types)) — Flag that indicates if table engine supports data deduplication.
* `supports_parallel_insert` ([UInt8](/reference/data-types)) — Flag that indicates if table engine supports parallel insert (see max\_insert\_threads setting).

<h2 id="example">
  Example
</h2>

```sql title="Query" theme={null}
SELECT *
FROM system.table_engines
WHERE name IN ('Kafka', 'MergeTree', 'ReplicatedCollapsingMergeTree')
```

```text title="Response" theme={null}
┌─name──────────────────────────┬─supports_settings─┬─supports_skipping_indices─┬─supports_sort_order─┬─supports_ttl─┬─supports_replication─┬─supports_deduplication─┬─supports_parallel_insert─┐
│ MergeTree                     │                 1 │                         1 │                   1 │            1 │                    0 │                      0 │                        1 │
│ Kafka                         │                 1 │                         0 │                   0 │            0 │                    0 │                      0 │                        0 │
│ ReplicatedCollapsingMergeTree │                 1 │                         1 │                   1 │            1 │                    1 │                      1 │                        1 │
└───────────────────────────────┴───────────────────┴───────────────────────────┴─────────────────────┴──────────────┴──────────────────────┴────────────────────────┴──────────────────────────┘
```

<h2 id="see-also">
  See also
</h2>

* MergeTree family [query clauses](/reference/engines/table-engines/mergetree-family/mergetree#mergetree-query-clauses)
* Kafka [settings](/reference/engines/table-engines/integrations/kafka#creating-a-table)
* Join [settings](/reference/engines/table-engines/special/join#join-limitations-and-settings)
