insert 語(yǔ)句可以用來(lái)將一行或多行數(shù)據(jù)插到數(shù)據(jù)庫(kù)表中, 使用的一般形式如下:
insert [into] 表名 [(列名1, 列名2, 列名3, ...)] values (值1, 值2, 值3, ...);
其中 [] 內(nèi)的內(nèi)容是可選的, 例如, 要給 samp_db 數(shù)據(jù)庫(kù)中的 students 表插入一條記錄, 執(zhí)行語(yǔ)句:
insert into students values(NULL, "王剛", "男", 20, "13811371377");
按回車鍵確認(rèn)后若提示 Query Ok, 1 row affected (0.05 sec) 表示數(shù)據(jù)插入成功。 若插入失敗請(qǐng)檢查是否已選擇需要操作的數(shù)據(jù)庫(kù)。
有時(shí)我們只需要插入部分?jǐn)?shù)據(jù), 或者不按照列的順序進(jìn)行插入, 可以使用這樣的形式進(jìn)行插入:
insert into students (name, sex, age) values("孫麗華", "女", 21);
select 語(yǔ)句常用來(lái)根據(jù)一定的查詢規(guī)則到數(shù)據(jù)庫(kù)中獲取數(shù)據(jù), 其基本的用法為:
select 列名稱 from 表名稱 [查詢條件];
例如要查詢 students 表中所有學(xué)生的名字和年齡, 輸入語(yǔ)句 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)容, 語(yǔ)句: select from students;
where 關(guān)鍵詞用于指定查詢條件, 用法形式為:
select 列名稱 from 表名稱 where 條件;
以查詢所有性別為女的信息為例, 輸入查詢語(yǔ)句:
select * from students where sex="女";
where 子句不僅僅支持 "where 列名 = 值" 這種名等于值的查詢形式, 對(duì)一般的比較運(yùn)算的運(yùn)算符都是支持的, 例如 =、>、=、
示例:
查詢年齡在21歲以上的所有人信息:
select * from students where age > 21;
查詢名字中帶有 "王" 字的所有人信息:
select * from students where name like "%王%";
查詢id小于5且年齡大于20的所有人信息:
select * from students where id20;
update 語(yǔ)句可用來(lái)修改表中的數(shù)據(jù), 基本的使用形式為:
update 表名稱 set 列名稱=新值 where 更新條件;
使用示例:
將id為5的手機(jī)號(hào)改為默認(rèn)的"-":
update students set tel=default where id=5;
將所有人的年齡增加1:
update students set age=age+1;
將手機(jī)號(hào)為 13288097888 的姓名改為 "張偉鵬", 年齡改為 19:
update students set name="張偉鵬", age=19 where tel="13288097888";
delete 語(yǔ)句用于刪除表中的數(shù)據(jù), 基本用法為:
delete from 表名稱 where 刪除條件;
使用示例:
刪除id為2的行:
delete from students where id=2;
刪除所有年齡小于21歲的數(shù)據(jù):
delete from students where age
刪除表中的所有數(shù)據(jù):
delete from students;
更多建議: