SQL ALTER DATABASE

The ALTER DATABASE statement is used to modify an existing database's settings, such as changing its collation or character set.

 

Syntax of SQL ALTER DATABASE

ALTER DATABASE database_name CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
  • database_name: The name of the database to be modified.
  • CHARACTER SET: Defines the new character set.
  • COLLATE: Defines the new collation rule.

Note: Not all database systems support ALTER DATABASE. Some changes might require recreating the database.

 

Key Features of SQL ALTER DATABASE

  • Modifies database-level settings.
  • Common changes include character set and collation.
  • Requires appropriate privileges to alter a database.

 

Example of SQL ALTER DATABASE

ALTER DATABASE SchoolDB CHARACTER SET utf8 COLLATE utf8_general_ci;

Output:

The character set and collation of SchoolDB are updated.

 

Checking Current Database Settings

To check the current character set and collation:

SELECT schema_name, default_character_set_name, default_collation_name 
FROM information_schema.schemata 
WHERE schema_name = 'SchoolDB';

 

Summary

  • ALTER DATABASE is used to modify database settings.
  • Common modifications include character set and collation.
  • Use SELECT from information_schema.schemata to check the current settings.