Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
SQL

Creating a Database in SQL

Create and select databases for your projects.

Creating a Database in SQL — a practical guide to SQL CREATE DATABASE with clear examples you can reuse in real projects.

SQL Tutorial Series (13/100). Prefer one article? Read the complete SQL tutorial.

Short description

Pick charset/collation carefully (utf8mb4 is typical for modern apps).

Create DB

CREATE DATABASE shop
  CHARACTER SET utf8mb4
  COLLATE utf8mb4_unicode_ci;
USE shop;

Leave a reply

Your email address will not be published. Required fields are marked *