LoginSignup
0
0

More than 1 year has passed since last update.

mysqlでテーブルを作成

Last updated at Posted at 2021-05-09

個人的な忘備録。

環境

windows
mySQL 8.0.15
mySQL Workbench 8.0

手順

スキーマ作成

赤枠をクリックしてスキーマを作成
image.png

「test」でそのままapply
image.png

スキーマ接続

mySQL commandline Cliantを起動しtestスキーマに繋げるため以下コマンド

use test;

テーブル作成

適当に以下を作成

mysql> create table list(
    -> id int,
    -> name varchar(200)
    -> );

作成できた
image.png

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