0
0

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(データベース・テーブル作成)自分用メモ

Posted at

参考サイト
https://prog-8.com/docs/mysql-database-setup

ターミナルを開いて

mysqlのログイン

mysql -u root -p

パスワードを入れたらログインできる。

データベースの確認

SHOW databases;

( ; )を忘れずに。

データベース作成

CREATE DATABASE test;

testがデータベースの名前です。名前はなんでもいいです。

次にデータベースの中身を作っていきます。

データベースの選択

USE test;

テーブルの作成

CREATE TABLE users (id INT AUTO_INCREMENT, name TEXT, PRIMARY KEY (id));

usersはテーブル名です。

テーブルの確認

SHOW tables;

usersが入ってるのを確認

テーブルの中身を確認

DESCRIBE users;

テーブル取得・挿入・取得

取得(挿入前確認)

SELECT * FROM users;

挿入

INSERT INTO users(name) VALUES ('ネコこねこ');

テーブル名usersの中のnameにネコこねこが追加されます。

取得

SELECT * FROM users;

テーブル削除

テーブル名はusersなので

DROP TABLE users;

データベースの削除

データベース名はtestなので

DROP DATABASE test;

SHOW databases;でデータベースが削除されているか確認しましょう。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?