insert 語句可以用來將一行或多行數(shù)據(jù)插到數(shù)據(jù)庫表中, 使用的一般形式如下:
insert [into] 表名 [(列名1, 列名2, 列名3, ...)] values (值1, 值2, 值3, ...);
其中 [] 內(nèi)的內(nèi)容是可選的, 例如, 要給 samp_db 數(shù)據(jù)庫中的 students 表插入一條記錄, 執(zhí)行語句:
insert into students values(NULL, "王剛", "男", 20, "13811371377");
按回車鍵確認(rèn)后若提示 Query Ok, 1 row affected (0.05 sec) 表示數(shù)據(jù)插入成功。 若插入失敗請檢查是否已選擇需要操作的數(shù)據(jù)庫。
有時我們只需要插入部分?jǐn)?shù)據(jù), 或者不按照列的順序進(jìn)行插入, 可以使用這樣的形式進(jìn)行插入:
insert into students (name, sex, age) values("孫麗華", "女", 21);
select 語句常用來根據(jù)一定的查詢規(guī)則到數(shù)據(jù)庫中獲取數(shù)據(jù), 其基本的用法為:
select 列名稱 from 表名稱 [查詢條件];
例如要查詢 students 表中所有學(xué)生的名字和年齡, 輸入語句 select name, age from students; 執(zhí)行結(jié)果如下:
mysql> select name, age from students;
+--------+-----+
| name | age |
+--------+-----+
| 王剛 | 20 |
| 孫麗華 | 21 |
| 王永恒 | 23 |
| 鄭俊杰 | 19 |
| 陳芳 | 22 |
| 張偉朋 | 21 |
+--------+-----+
6 rows in set (0.00 sec)
mysql>
也可以使用通配符 查詢表中所有的內(nèi)容, 語句: select from students;
where 關(guān)鍵詞用于指定查詢條件, 用法形式為: select 列名稱 from 表名稱 where 條件
;
以查詢所有性別為女的信息為例, 輸入查詢語句: select * from students where sex="女"
;
where 子句不僅僅支持 "where 列名 = 值" 這種名等于值的查詢形式, 對一般的比較運(yùn)算的運(yùn)算符都是支持的, 例如 =、>、<、>=、<、!= 以及一些擴(kuò)展運(yùn)算符 is [not] null、in、like 等等。 還可以對查詢條件使用 or 和 and 進(jìn)行組合查詢, 以后還會學(xué)到更加高級的條件查詢方式, 這里不再多做介紹。
示例:
查詢年齡在 21 歲以上的所有人信息: select * from students where age > 21
;
查詢名字中帶有 "王" 字的所有人信息: select * from students where name like "%王%"
;
查詢 id 小于 5 且年齡大于 20 的所有人信息: select * from students where id<5 and age>20
;
update 語句可用來修改表中的數(shù)據(jù), 基本的使用形式為:
update 表名稱 set 列名稱=新值 where 更新條件;
使用示例:
將 id 為 5 的手機(jī)號改為默認(rèn)的"-":update students set tel=default where id=5
;
將所有人的年齡增加 1: update students set age=age+1;
將手機(jī)號為 13288097888 的姓名改為 "張偉鵬", 年齡改為 19: update students set name="張偉鵬", age=19 where tel="13288097888"
;
delete 語句用于刪除表中的數(shù)據(jù), 基本用法為:
delete from 表名稱 where 刪除條件;
使用示例:
刪除 id 為 2 的行: delete from students where id=2
;
刪除所有年齡小于 21 歲的數(shù)據(jù): delete from students where age<20
;
刪除表中的所有數(shù)據(jù): delete from students
;