2020-07-11 11:05:49 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/statements/rename
2022-04-09 13:29:05 +00:00
sidebar_position: 48
sidebar_label: RENAME
2020-07-11 11:05:49 +00:00
---
2022-06-02 10:55:18 +00:00
# RENAME Statement
2020-07-11 11:05:49 +00:00
2021-08-03 20:05:48 +00:00
Renames databases, tables, or dictionaries. Several entities can be renamed in a single query.
2021-08-03 20:06:39 +00:00
Note that the `RENAME` query with several entities is non-atomic operation. To swap entities names atomically, use the [EXCHANGE ](./exchange.md ) statement.
2021-08-01 13:02:35 +00:00
**Syntax**
```sql
2023-10-12 06:24:59 +00:00
RENAME [DATABASE|TABLE|DICTIONARY] name TO new_name [,...] [ON CLUSTER cluster]
2021-08-01 13:02:35 +00:00
```
2022-06-02 10:55:18 +00:00
## RENAME DATABASE
2021-04-09 11:21:09 +00:00
2021-08-01 16:17:50 +00:00
Renames databases.
2021-08-01 13:02:35 +00:00
**Syntax**
2021-08-01 16:17:50 +00:00
```sql
2021-08-01 13:02:35 +00:00
RENAME DATABASE atomic_database1 TO atomic_database2 [,...] [ON CLUSTER cluster]
2021-04-09 11:21:09 +00:00
```
2022-06-02 10:55:18 +00:00
## RENAME TABLE
2021-08-01 13:02:35 +00:00
2020-07-11 11:05:49 +00:00
Renames one or more tables.
2021-08-01 16:17:50 +00:00
Renaming tables is a light operation. If you pass a different database after `TO` , the table will be moved to this database. However, the directories with databases must reside in the same file system. Otherwise, an error is returned.
If you rename multiple tables in one query, the operation is not atomic. It may be partially executed, and queries in other sessions may get `Table ... does not exist ...` error.
2021-08-01 13:02:35 +00:00
**Syntax**
2020-07-11 11:05:49 +00:00
``` sql
2021-08-01 13:02:35 +00:00
RENAME TABLE [db1.]name1 TO [db2.]name2 [,...] [ON CLUSTER cluster]
2020-07-11 11:05:49 +00:00
```
2021-08-01 13:02:35 +00:00
**Example**
```sql
RENAME TABLE table_A TO table_A_bak, table_B TO table_B_bak;
```
2023-10-09 11:03:17 +00:00
And you can use a simpler sql:
```sql
RENAME table_A TO table_A_bak, table_B TO table_B_bak;
```
2022-06-02 10:55:18 +00:00
## RENAME DICTIONARY
2021-08-01 13:02:35 +00:00
Renames one or several dictionaries. This query can be used to move dictionaries between databases.
**Syntax**
```sql
RENAME DICTIONARY [db0.]dict_A TO [db1.]dict_B [,...] [ON CLUSTER cluster]
```
**See Also**
2023-04-19 15:55:29 +00:00
- [Dictionaries ](../../sql-reference/dictionaries/index.md )