Create
mysql> create table 表格名-> (欄位 1 欄位 1 資料種類,
-> 欄位 2 欄位 2 資料種類,
-> );
Drop
mysql> drop table 表格名;Delete
mysql> delete from 表格名 where 欄位名 = 'jackie';insert into
mysql> insert into 表格名 (欄位名1`,`欄位名2`) values ('steven','27278502');Update
UPDATE "表格名"SET `欄位` = '新值'
WHERE {條件}
Alter Table
加入一個叫做 "name" 的欄位ALTER table customer add name char(1)
我們要把 "Address" 欄位改名為 "Addr"
ALTER table customer change Address Addr char(50)
我們要將 "Addr" 欄位的資料種類改為 char(30)
ALTER table customer modify Addr char(30)
我們要刪除 "name" 欄位
ALTER table customer drop name
dump
C:\Users\Jackie>mysqldump -u root -p1234 test > welltake.sql