This is a read-only copy of the MariaDB Knowledgebase generated on 2024-05-13. For the latest, interactive version please visit https://mariadb.com/kb/.

CREATE DATABASE

Sintassi

CREATE [OR REPLACE] {DATABASE | SCHEMA} [IF NOT EXISTS] nome_db
    [specifica_create] ...

specifica_create:
    [DEFAULT] CHARACTER SET [=] nome_charset
  | [DEFAULT] COLLATE [=] nome_collation

Spiegazione

CREATE DATABASE crea un database con il nome specificato. Per utilizzare questa istruzione, occorre disporre del privilegio CREATE. CREATE SCHEMA è sinonimo di CREATE DATABASE.

Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.