1
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.

Ubuntu Server 20.04.3 LTS 構築#22 Docker構築(MYSQLのテーブル作成~データの追加)

Last updated at Posted at 2022-03-20

実施日:2022/03/11~

【今回の内容】
MySQLのテーブル作成からデータの追加迄

テーブル作成

1.テーブル作成

構文
CREATE TABLES テーブル名 (カラム名1 データタイプ , カラム名2 データタイプ) ; 

※カラムのデータを連番で入力したい場合
AUTO_INCREMENTを追加したいカラム名の後に追加する。
※行を一意に識別できるようにする場合
PRIMARY KEYを追加したいカラム名の後に追加する。

データの追加

2.データの追加

構文
INSERT INTO テーブル名 VALUSE (各カラムのデータ) ;

実践

上記の構文を元に下記のようなデータを作成しました。
+--------+--------+
|id    +result |
+--------|--------|
|5900   |123   |
|5901   |234   |
|5902   |345   |
|5903   |456   |
|5904   |567   |
|5905   |678   |
|5906   |781   |
+--------+--------+

関連項目

インストールから基本操作迄
MYSQLのコンテナ作成~データベース作成

本日はここまで

1
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
1
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?