您好,登錄后才能下訂單哦!
本文主要給大家介紹什么是MySQL視圖及如何操作,文章內(nèi)容都是筆者用心摘選和編輯的,具有一定的針對性,對大家的參考意義還是比較大的,下面跟筆者一起了解下什么是MySQL視圖及如何操作吧。
1、準(zhǔn)備工作
在MySQL數(shù)據(jù)庫中創(chuàng)建兩張表balance(余額表)和customer(客戶表)并插入數(shù)據(jù)。
create table customer( id int(10) primary key, name char(20) not null, role char(20) not null, phone char(20) not null, sex char(10) not null, address char(50) not null )ENGINE=InnoDB DEFAULT CHARSET=utf8; #外鍵為customerId create table balance( id int(10) primary key, customerId int(10) not null, balance DECIMAL(10,2), foreign key(customerId) references customer(id) )ENGINE=InnoDB DEFAULT CHARSET=utf8;
向客戶表和余額表中各插入3條數(shù)據(jù)。
insert into customer values(0001,"xiaoming",'vip1','12566666','male','江寧區(qū)888號'); insert into customer values(0002,"xiaohong",'vip10','15209336760','male','建鄴區(qū)888號'); insert into customer values(0003,"xiaocui",'vip11','15309336760','female','新街口888號'); insert into balance values(1,0001,900.55); insert into balance values(2,0002,900.55); insert into balance values(3,0003,10000);
視圖可以簡單理解成虛擬表,它和數(shù)據(jù)庫中真實(shí)存在數(shù)據(jù)表不同,視圖中的數(shù)據(jù)是基于真實(shí)表查詢得到的。視圖和真實(shí)表一樣具備相似的結(jié)構(gòu)。真實(shí)表的更新,查詢,刪除等操作,視圖也支持。那么為什么需要視圖呢?
a、提升真實(shí)表的安全性:視圖是虛擬的,可以只授予用戶視圖的權(quán)限而不授予真實(shí)表的權(quán)限,起到保護(hù)真實(shí)表的作用。
b、定制化展示數(shù)據(jù):基于同樣的實(shí)際表,可以通過不同的視圖來向不同需求的用戶定制化展示數(shù)據(jù)。
c、簡化數(shù)據(jù)操作:適用于查詢語句比較復(fù)雜使用頻率較高的場景,可以通過視圖來實(shí)現(xiàn)。
......
需要說明一點(diǎn)的是:視圖相關(guān)的操作需要用戶具備相應(yīng)的權(quán)限。以下操作使用root用戶,默認(rèn)用戶具備操作權(quán)限。
create view <視圖名稱> as <select語句>;
修改視圖名稱可以先刪除,再用相同的語句創(chuàng)建。
#更新視圖結(jié)構(gòu) alter view <視圖名稱> as <select語句>; #更新視圖數(shù)據(jù)相當(dāng)于更新實(shí)際表,不適用基于多表創(chuàng)建的視圖 update ....
注意:部分視圖的數(shù)據(jù)是無法更新,也就是無法使用update,insert等語句更新,比如:
a、select語句包含多個表
b、視圖中包含having子句
c、試圖中包含distinct關(guān)鍵字
......
drop view <視圖名稱>
mysql> create view bal_view -> as -> select * from balance; Query OK, 0 rows affected (0.22 sec)
創(chuàng)建完成后,查看bal_view的結(jié)構(gòu)和記錄??梢园l(fā)現(xiàn)通過視圖查詢到數(shù)據(jù)和通過真實(shí)表查詢得到的結(jié)果完全一樣。
#查詢bal_view的結(jié)構(gòu) mysql> desc bal_view; +------------+---------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +------------+---------------+------+-----+---------+-------+ | id | int(10) | NO | | NULL | | | customerId | int(10) | NO | | NULL | | | balance | decimal(10,2) | YES | | NULL | | +------------+---------------+------+-----+---------+-------+ 3 rows in set (0.07 sec) #查詢bal_view中的記錄 mysql> select * from bal_view; +----+------------+----------+ | id | customerId | balance | +----+------------+----------+ | 1 | 1 | 900.55 | | 2 | 2 | 900.55 | | 3 | 3 | 10000.00 | +----+------------+----------+ 3 rows in set (0.01 sec)
通過創(chuàng)建視圖的語句不難得出結(jié)論:當(dāng)真實(shí)表中的數(shù)據(jù)發(fā)生改變時,視圖中的數(shù)據(jù)也會隨之改變。那么當(dāng)視圖中的數(shù)據(jù)發(fā)生改變時,真實(shí)表中的數(shù)據(jù)會變化嗎?來實(shí)驗(yàn)一下,修改id=1的客戶balance為2000。
mysql> update bal_view set balance=2000 where id=1; Query OK, 1 row affected (0.05 sec) Rows matched: 1 Changed: 1 Warnings: 0
來看一下真實(shí)表balance中的數(shù)據(jù)。
mysql> select * from bal_view where id=1; +----+------------+---------+ | id | customerId | balance | +----+------------+---------+ | 1 | 1 | 2000.00 | +----+------------+---------+ 1 row in set (0.03 sec)
結(jié)論:視圖表中的數(shù)據(jù)發(fā)生變化時,真實(shí)表中的數(shù)據(jù)也會隨之改變。
創(chuàng)建視圖cus_bal,共兩個字段客戶名稱和余額。
mysql> create view cus_bal -> (cname,bal) -> as -> select customer.name,balance.balance from customer ,balance -> where customer.id=balance.customerId; Query OK, 0 rows affected (0.05 sec) #查看cus_bal中的數(shù)據(jù) mysql> select * from cus_bal; +----------+----------+ | cname | bal | +----------+----------+ | xiaoming | 2000.00 | | xiaohong | 900.55 | | xiaocui | 10000.00 | +----------+----------+ 3 rows in set (0.28 sec)
將cus_bal視圖中的cname改成cusname。
mysql> alter view cus_bal -> (cusname,bal) -> as -> select customer.name,balance.balance from customer ,balance -> where customer.id=balance.customerId; Query OK, 0 rows affected (0.06 sec) #查看修改后視圖結(jié)構(gòu)。 mysql> desc cus_bal; +---------+---------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------+---------------+------+-----+---------+-------+ | cusname | char(20) | NO | | NULL | | | bal | decimal(10,2) | YES | | NULL | | +---------+---------------+------+-----+---------+-------+ 2 rows in set (0.00 sec)
修改基于多表創(chuàng)建的視圖
mysql> insert into cus_bal(cusname,bal) values ("ee",11); ERROR 1393 (HY000): Can not modify more than one base table through a join view 'rms.cus_bal'
刪除視圖cus_bal
drop view cus_bal; mysql> drop view cus_bal; Query OK, 0 rows affected (0.00 sec)
看完以上關(guān)于什么是MySQL視圖及如何操作,很多讀者朋友肯定多少有一定的了解,如需獲取更多的行業(yè)知識信息 ,可以持續(xù)關(guān)注我們的行業(yè)資訊欄目的。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。