LoginSignup
0
0

More than 3 years have passed since last update.

データベースサーバー

Posted at

起動

sudo service mysqld start

起動状態確認

sudo service mysqld status

停止

sudo service mysqld stop

データベースサーバへの接続

mysql -u root

データベースサーバからの切断

mysql> exit

データベースの作成

mysql> CREATE DATABASE ???;

データベース一覧の確認

mysql> show databases;

データベースを削除

mysql> DROP DATABASE ???;

操作するデータベースを選択

mysql> USE ???;

0
0
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
0
0