1.增:
插入指定列:insert into 表名(列1,列2,...,列n) values(值1,值2,...,值n);

插入所有列:insert into 表名 values(值1,值2,...,值n);

一次插入多行:
insert into 表名 values
(值1,值2,...,值n),
(值1,值2,...,值n),
...
(值1,值2,...,值n);

2.刪:delete from 表名 [where 條件];

3.改:update 表名 set 列1=新值1,列2=新值2,...,列n=新值n [where 條件];

4.查:
查詢部分列:select 列1,列2,...,列n from 表名 [where 條件];

查詢所有列:select * from 表名 [where 條件];







