允许liquan创建表和存储过程。
添加:
Use northwind
Grant Create Table,Create Procedure
To liquan
删除登录账号:
撤销liquan对Products表使用Select,Insert,Update语句权。
Use northwind
Revoke Select,Insert,Update
On Products
From liquan
拒绝liquan对Products表使用Select,Insert,Update语句(补充) Use northwind
Deny Select,Insert,Update
On Products
To liquan