索引:
一種快速定位技術(shù),相當(dāng)于一本書的目錄頁.
作用:快速查詢數(shù)據(jù) 條件:數(shù)據(jù)條目大于2000條
create index id_index on info (id); //創(chuàng)建普通索引
show index from info \G //查看索引
drop index id_index from on info; //刪除索引
create unique index unique_id_index on info (id); //創(chuàng)建唯一索引
alter table info add primary key (id); //創(chuàng)建主鍵索引(已經(jīng)創(chuàng)建了表,沒有指定主鍵,然后修改表加入主鍵,主鍵索引會(huì)自動(dòng)創(chuàng)建)
alter table info change id id int(10);//刪除自增長
alter table info drop primary key;//刪除主建
alter table info add column age int; //添加列
alter table info drop column age int; //刪除列
create table infos (descript TEXT,FULLTEXT(descript)); //創(chuàng)建全文索引
create index multi_index on info(name,address); //創(chuàng)建多列索引
事務(wù):
一組操作共同執(zhí)行或者都不執(zhí)行,結(jié)果保持一致。
特性:原子性、一致性、隔離性、持久性。
例如:銀行轉(zhuǎn)賬
姓名 | 余額 | 條件:余額>0 |
Zhangsan |
100 |
/ |
lisi |
200 |
/ |
注:Zhangsan 轉(zhuǎn)賬100給 to lisi
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊、網(wǎng)站空間、營銷軟件、網(wǎng)站建設(shè)、銀川網(wǎng)站維護(hù)、網(wǎng)站推廣。
事務(wù)固定格式:
begin 開始
Update bank set money=money+100 where name=’lisi’
Update bank set money=money-100 where name=’zhangsan’
commit 提交
rollback 回滾
補(bǔ)充:
set autocommit = 1; //開啟自動(dòng)提交
set autocommit = 0; //禁止自動(dòng)提交
savepoint s2; //定義回滾點(diǎn)
rollback to savepoint s2; //回滾到S2 (相當(dāng)于虛擬機(jī)還原快照)
視圖:
視圖是 數(shù)據(jù)庫中的虛擬表。
作用:一張表中的數(shù)據(jù)給不同的權(quán)限用戶提供訪問
舉例:公司員工績效工資考核表:
工號 | 姓名 | 年齡 | 崗位 | 績效 | 工資 |
1 |
Tom |
50 |
總裁 |
/ |
100萬 |
2 |
Jerry |
40 |
總監(jiān) |
90 |
20萬 |
3 |
charry |
30 |
云計(jì)算工程師 |
80 |
12萬 |
4 |
Jack |
24 |
云計(jì)算工程師 |
90 |
15萬 |
語法: create view 視圖名稱 AS select 語句
create view scoreview as select from info where score > 80; //創(chuàng)建視圖(條件:成績>80)
select * from score_view; //查看視圖
update score_view set score=88 where id=1; //id1的成績更新為88
drop view if exists score_view; //刪除視圖
總結(jié):
1.數(shù)據(jù)庫索引分為普通索引、唯一性索引、主鍵索引、全文索引、多列索引;
2.數(shù)據(jù)庫索引可以協(xié)助快速查詢表中數(shù)據(jù),但并不是任何字段都需要?jiǎng)?chuàng)建索引;
3.數(shù)據(jù)庫事務(wù)的ACID特性:原子性、一致性、隔離性、持久性;
4.MySQL事務(wù)命令有begin、rollback、commit、savepoint;
當(dāng)前名稱:Mysql索引、事務(wù)、視圖常用命令及要點(diǎn)歸納
新聞來源:
http://weahome.cn/article/ggiegp.html