Create a schema if it does not already exist.
Section: create and alter tables
Create a database
sql
sql
CREATE DATABASE IF NOT EXISTS app_db CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;Explanation
Using `utf8mb4` is the standard choice for full Unicode support.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing create and alter tables