Altering a Database

The ALTER DATABASE statement enables you to change the characteristics of an existing database. Its syntax is the same as the syntax of the CREATE DATABASE statement, and any CHARACTER SET or COLLATE specification changes the behavior of an existing database.

For example, suppose you want to change greekdb to use the ASCII character set. You would issue the following command:

MariaDB> ALTER DATABASE greekdb
 -> CHARACTER SET ascii;
Query OK, 1 row affected (0.00 sec)

Previous Page Next Page