ClickHouse/docs/en/sql-reference/table-functions/merge.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
795 B
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/table-functions/merge
sidebar_position: 38
sidebar_label: merge
2020-04-03 13:23:32 +00:00
---
2022-06-02 10:55:18 +00:00
# merge
2021-11-01 10:39:25 +00:00
Creates a temporary [Merge](../../engines/table-engines/special/merge.md) table. The table structure is taken from the first table encountered that matches the regular expression.
2021-11-01 10:39:25 +00:00
**Syntax**
```sql
merge('db_name', 'tables_regexp')
```
**Arguments**
2021-11-02 14:29:20 +00:00
- `db_name` — Possible values:
- database name,
- constant expression that returns a string with a database name, for example, `currentDatabase()`,
- `REGEXP(expression)`, where `expression` is a regular expression to match the DB names.
2021-11-01 10:39:25 +00:00
- `tables_regexp` — A regular expression to match the table names in the specified DB or DBs.
**See Also**
- [Merge](../../engines/table-engines/special/merge.md) table engine