第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

玩轉(zhuǎn)MySQL8.0新特性

董旭陽 數(shù)據(jù)庫工程師
難度入門
時長 3小時 0分
學(xué)習(xí)人數(shù)
綜合評分9.33
7人評價 查看評價
10.0 內(nèi)容實(shí)用
9.1 簡潔易懂
8.9 邏輯清晰
alter table t1 alter index indexname invisible; --讓隱藏索引變的不可見
set default role 'app_write' to 'write01','write02';
create user 'write02' identified by 'write02';

grant 'app_developer' to 'dev01','dev02','dev03';
grant 'app_read' to 'read01','read02'';
grant 'app_write'to 'write01','write02';

set default role 'app_developer' to 'dev01','dev02','dev03';
set default role 'app_read' to 'read01','read02';
create user 'dev01' identified by 'dev01';
create user 'dev02‘ identified by 'dev02';
create user ’dev03' identified by 'dev03';
create user 'read01‘ identified by 'read01';
create user 'read02' identified by 'read02';
create user 'write01' identified by 'write01';
create database appdb;
create table appdb.t1(id int);
create role 'app_developer','app_read','app_write';
grant all on appdb.* to 'app_developer';
grant select on appdb.* to 'app_read';
grant insert,update,delete on appdb.* to 'app_write';
斐波那契數(shù)列
1.限定最大值
with recursive cte(m, n) as (
select 0, 1
union all
select n, m+n from cte where n<100
) select m from cte;
2.限定位數(shù)
with recursive cte(id, m, n) as (
select 0, 0, 1
union all
select id+1, n, m+n from cte where id<10
) select m from cte;
Cr4
Mysql8.0新特性,我在工作中用的比較少,可能是層次不夠高把,或者DBA用的比較多。
開篇介紹函數(shù)時第二個函數(shù)寫錯了,應(yīng)該是:JSON_MERGE_PRESERVE()
我現(xiàn)在用的就是8.0版本的
學(xué)習(xí)MySQL
讀取權(quán)限
create role 'read_role';
grant select on appdb.* to 'read_role';
create user 'read01' identified by 'Read01@2019';
grant 'read_role' to 'read01';
show grants for 'read01' using 'read_role';
請問大神們,jTable是怎么創(chuàng)建的?
講的很專業(yè)
啥時候會去mysql高級課程
好,通俗易懂,實(shí)操順暢。
課程須知
1、一定的MySQL 基礎(chǔ)知識。 2、了解基本的數(shù)據(jù)庫操作。
老師告訴你能學(xué)到什么?
1. MySQL 8.0 版本中更加安全方便的用戶管理。 2. MySQL 8.0 版本新增的三種索引類型。 3. 如何使用強(qiáng)大的 SQL 通用表表達(dá)式和窗口函數(shù)功能。 4. InnoDB 存儲引擎相關(guān)的增強(qiáng)。 5. 新增的 JSON 數(shù)據(jù)處理函數(shù)。

微信掃碼,參與3人拼團(tuán)

微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

友情提示:

您好,此課程屬于遷移課程,您已購買該課程,無需重復(fù)購買,感謝您對慕課網(wǎng)的支持!

本次提問將花費(fèi)2個積分

你的積分不足,無法發(fā)表

為什么扣積分?

本次提問將花費(fèi)2個積分

繼續(xù)發(fā)表請點(diǎn)擊 "確定"

為什么扣積分?

舉報(bào)

0/150
提交
取消