設定編碼語系 set names
建立資料庫 create database
指定使用資料庫 use
建立資料表 create table
顯示資料表欄位架構 show columns
新增資料 insert into
修改 update
刪除 delete
查詢 select
修改欄位結構 alter table
刪除資料表 drop table
刪除資料庫 drop database