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 1 year has passed since last update.

【MySQL】テーブル作成

Last updated at Posted at 2022-10-03

## 概要
MySQL備忘録
テーブル作成方法

テーブル作成

CREATE TABLE test_db.テーブル名 (id int, name varchar(100), memo varchar(100));

テーブルの中身を一覧表示

SELECT * FROM テーブル名;

データを挿入する

INSERT INTO テーブル名 (id, name, memo) VALUES
id name memo
1 ソードアートオンライン
2 ウマ娘 ライスシャワーかわいい
3 はたらく魔王さま 俺もマックでバイトする

後から主キーを設定する

ALTER TABLE テーブル名 ADD PRIMARY KEY(id);
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?