Skip to content

Instantly share code, notes, and snippets.

@kita127
Last active August 10, 2022 09:55
Show Gist options
  • Save kita127/b83055aab3592ce68d75ee26d3c752b4 to your computer and use it in GitHub Desktop.
Save kita127/b83055aab3592ce68d75ee26d3c752b4 to your computer and use it in GitHub Desktop.
MySQL コマンド覚書

MySQL コマンド覚書

データベース一覧を表示する

show databases;

任意のデータベースのテーブル一覧を確認する

show tables from データベース名;

任意のデータベースを使用する

use データベース名;

任意のテーブルの中身を空にする

truncate table テーブル名;

テーブルの情報をみる

desc テーブル名;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment