MySQL進修筆記之數據的增、刪、改完成辦法。本站提示廣大學習愛好者:(MySQL進修筆記之數據的增、刪、改完成辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL進修筆記之數據的增、刪、改完成辦法正文
本文實例講述了MySQL進修筆記之數據的增、刪、改完成辦法。分享給年夜家供年夜家參考,詳細以下:
1、增長數據
拔出代碼格局:
insert into 注解 [列名…] values (值…)
create table test21(name varchar(32)); insert into test21 (name) values ('huangbiao');
拔出准繩:
1、拔出的數據應與字段的數據類型雷同
2、數據的年夜小應當在列的劃定規模內
3、在values中列出的數據地位必需與被參加的列的分列地位對應
例子:
create table test22(id int,name varchar(32)); mysql> insert into test22 (id,name) values (3,'huangbiao'); mysql> insert into test22 (name,id) values ('huangbiao2',5); mysql> insert into test22 (name,id) values ('',51); mysql> insert into test22 (name,id) values (NULL,555); mysql> insert into test22 (id) values (15);
2、更新數據
更新數據的語法格局:
update 注解 set 列名=表達式 … where 前提
解釋: 假如where 前面沒有前提,則相當於對全部表停止操作。
例子數據:
create table employee( id int, name varchar(20), sex bit, birthday date, salary float, entry_date date, resume text ); insert into employee values(1,'aaa',0,'1977-11-11',56.8,now(),'hello word'); insert into employee values(2,'bbb',0,'1977-11-11',57.8,now(),'hello word'); insert into employee values(3,'ccc',0,'1977-11-11',56.3,now(),'hello word');
將employee表的sal字段全體改成2000
update employee set sal=2000;
將名字為zs的用戶的sal字段設置為3000
update employee set sal=3000 where name='zs'
將名字為wu的用戶sal字段在本來的基本上加100
update employee set sal=sal+100 where name='wu'
3、刪除數據
刪除數據語法:
delete from 注解 where 前提
刪除數據准繩:
1、 假如不應用where 子句,將刪除表中一切數據
2、 delete語句不克不及刪除某一列的值(可以使用update)
3、 delete僅僅刪除記載,不刪除表自己,如要刪除表,應用drop table語句
4、 同insert和update一樣,從一個表中刪除一筆記錄將惹起其他表的參照完全性成績
5、 刪除表中的數據也能夠應用truncate table語句
mysql 事務
1、 mysql掌握台是默許主動提交事務(dml)
2、 假如我們要在掌握台中應用事務,請看上面:
mysql 刪除數據是主動提交的
mysql> set autocommit=false; Query OK, 0 rows affected (0.00 sec) mysql> savepoint aaa; Query OK, 0 rows affected (0.00 sec) mysql> delete from employee; Query OK, 3 rows affected (0.05 sec) mysql> select * from employee; Empty set (0.00 sec) mysql> rollback to aaa; Query OK, 0 rows affected (0.06 sec) mysql> select * from employee; +------+------+------+------------+--------+------------+------------+ | id | name | sex | birthday | salary | entry_date | resume | +------+------+------+------------+--------+------------+------------+ | 1 | aaa | | 1977-11-11 | 56.8 | 2014-11-10 | hello word | | 2 | bbb | | 1977-11-11 | 57.8 | 2014-11-10 | hello word | | 3 | ccc | | 1977-11-11 | 56.3 | 2014-11-10 | hello word | +------+------+------+------------+--------+------------+------------+ 3 rows in set (0.00 sec)
願望本文所述對年夜家MySQL數據庫計有所贊助。