LoginSignup
1
2

More than 5 years have passed since last update.

MySQL データベース作成・削除・表示

Last updated at Posted at 2016-01-30

作成

CREATE DATABASE IF NOT EXISTS XXX DEFAULT CHARACTER SET = utf8 DEFAULT COLLATE = utf8_general_ci;

削除

DROP DATABASE XXX;

表示

SHOW DATABASES;
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2