2021-06-11

create?database?two20210611?default?charset=utf8;

use?two20210611;

create?table?student?(

????studentid?char(10)?PRIMARY?key,

????studentname?varchar(10)?not?null,

????gender?varchar(2)?,

????age?int?,

????index(studentname)

);

show?create?table?student;

insert?into?student?values?('1'?,?'丘處機'?,?'男'?,?46?);

select?*?from?student;

--?執(zhí)行計劃?explain

explain?select?*?from?student?where?studentname="丘處機";

--?組合索引

create?table?student2?(

????studentid?char(10)?PRIMARY?key,

????studentname?varchar(10)?not?null,

????age?int?,

????city?varchar(10),

????dormitoryNo?varchar(5),?????#?宿舍編號

????index?MultiIndex(city,dormitoryNo)??#?組合索引

);

show?create?table?student2;

insert?into?student2?values?('1'?,?'楊過'?,?19?,?'活死人墓'?,?'002')?;

select?*?from?student2?where?studentname="楊過";

explain?select?*?from?student2?where?studentname="楊過";

select?*?from?student2?where?city="活死人墓"?and?dormitoryNo?='002';

explain?select?*?from?student2?where?city="活死人墓"?and?dormitoryNo?='002';

--?刪除索引

alter?table?student?drop?index?studentname;

--?創(chuàng)建索引

create?index?studentname?on?student(studentname)?;

--?事務(wù)

create?table?user(

????u_name?varchar(20)?,

????unique(u_name)

);

insert?into?user?values?("小龍女");

select?*?from?user;

begin;

insert?into?user?values?("李莫愁");

commit;

begin;??--?事務(wù)的開始

insert?into?user?values?("尹志平");

commit;??--?事務(wù)的結(jié)束

begin?;

insert?into?user?values?("郭靖");

rollback;?--?回滾

--?回滾點

begin;

insert?into?user?values?("A");

savepoint?first_point;

insert?into?user?values?("B");

rollback?to?savepoint?first_point;

insert?into?user?values("C");

commit;

select?*?from?user?;

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容