Mysql (ubuntu) - fantasy0107/notes GitHub Wiki
command
顯示資料庫 - show databases;
使用資料庫 - use databaseName
顯示資料表 - show tables;
刪除資料庫 - DROP database DATABASE_NAME
新增資料庫 - CREATE DATABASE db_name CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
顯示 column - desc tableName;