成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

數(shù)據(jù)庫grant用法 sql的grant語句用法?

sql的grant語句用法?Grant在安全系統(tǒng)中創(chuàng)建項目,使當(dāng)前數(shù)據(jù)庫中的用戶能夠處理當(dāng)前數(shù)據(jù)庫中的數(shù)據(jù)或執(zhí)行特定的transact-SQL語句。語法權(quán)限:grant{all | statement

sql的grant語句用法?

Grant在安全系統(tǒng)中創(chuàng)建項目,使當(dāng)前數(shù)據(jù)庫中的用戶能夠處理當(dāng)前數(shù)據(jù)庫中的數(shù)據(jù)或執(zhí)行特定的transact-SQL語句。語法權(quán)限:grant{all | statement[,。。。N] }到安全帳戶[,。。。N] 對象權(quán)限:grant{all[priorities].]~][drop]用于刪除表、表中的列、視圖、索引等。drop表示刪除。示例:drop table student//delete student table alter table student drop column sname//delete student table sname column drop index Studname//delete view,依此類推。當(dāng)您使用more時,您可以看到這個語句的用法[grant]是一個authorization語句,它將表上的操作權(quán)限授予用戶。示例:向用戶U1授予對student表的insert權(quán)限:向U1授予insert table student[revoke]是撤消權(quán)限。值得注意的是,撤銷權(quán)限時,要注意是否是級聯(lián)撤銷。例如,撤消U1對學(xué)生的插入權(quán)限,撤消U1對學(xué)生表的插入。grant語句和revoke語句是相對的,您應(yīng)該看到hao(∩)∩)o