select *from table
sub_selects(高級)
select *from table
select …into table…(高級)
(可用select…into outfile…
其中
二
UPDATE用新值更新現存表中行的列
三
insert into table
INSERT … VALUES形式的語句基於明確指定的值插入行
replace into tbl_name(
REPLACE功能與INSERT完全一樣
四
$a=
DELETE從tbl_name表中刪除滿足由where_definition給出的條件的行
[
From:http://tw.wingwit.com/Article/program/MySQL/201311/29755.html