單項選擇題在SQL server中撤銷hello用戶對表students賦予刪除權限正確的語句是()

A.grant delete on students to hello
B.revoke delete on students to hello
C.revoke delete on students from hello
D.deny delete on students to hello


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題以下不是SQL server的服務器角色的特點的是()

A.每個角色有一定的權限
B.是服務器權限的集合
C.不能創(chuàng)建服務器角色
D.能創(chuàng)建服務器角色

2.單項選擇題以下哪一條SQL語句可以用來創(chuàng)建SQL server的數據庫用戶?()

A.CREATE USER user_name FOR LOGIN login_name
B.ALTER USER username WITH NAME=newusername
C.create login name with password=’abcd1234@’
D.CREATE ROLE role_name AUTHORIZATION owner_name

3.單項選擇題在不關閉數據庫服務器的情況下對MySQL數據庫進行備份與恢復,以下方法中錯誤的是()

A.使用MySQL圖形界面工具(如navicat)進行備份與恢復
B.直接復制所有數據庫文件
C.使用mysqldump命令進行備份與恢復

5.單項選擇題要在stu表中刪除一條字符類型字段A的值是字符串‘B’的記錄,應該用()。

A.Delete From stu Where A IS ‘B’
B.ALTER stu DROP A
C.Delete From stu Where A=B
D.Delete From stu Where A=‘B’