0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MySQLのDB作成

Posted at

開発用ローカルDB作成

CREATE DATABASE netshare_dev;

確認

show databases;
※作成したDBが出力されていることを確認

DBの中身

use netshare_dev;

tableの確認

show tables;
何も作成してないのでemptyと帰ってくる

tableの作成

create table users;
usersテーブルの作成
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?