Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.38 KB

sql-statement-alter-database.md

File metadata and controls

44 lines (29 loc) · 1.38 KB
title summary aliases
ALTER DATABASE | TiDB SQL Statement Reference
An overview of the usage of ALTER DATABASE for the TiDB database.
/docs/dev/sql-statements/sql-statement-alter-database/
/docs/dev/reference/sql/statements/alter-database/

ALTER DATABASE

ALTER DATABASE is used to specify or modify the default character set and collation of the current database. ALTER SCHEMA has the same effect as ALTER DATABASE.

Synopsis

AlterDatabaseStmt ::=
    'ALTER' 'DATABASE' DBName? DatabaseOptionList

DatabaseOption ::=
    DefaultKwdOpt ( CharsetKw '='? CharsetName | 'COLLATE' '='? CollationName | 'ENCRYPTION' '='? EncryptionOpt )

Examples

Modify the test database schema to use the utf8mb4 character set:

{{< copyable "sql" >}}

ALTER DATABASE test DEFAULT CHARACTER SET = utf8mb4;
Query OK, 0 rows affected (0.00 sec)

Currently, TiDB only supports some character sets and collations. See Character Set and Collation Support for details.

MySQL compatibility

The ALTER DATABASE statement in TiDB is fully compatible with MySQL. If you find any compatibility differences, report a bug.

See also