0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【SQL】ユーザー権限の削除(REVOKE)

Posted at

不要な権限を削除する

Oracle

システム権限
REVOKE [権限名] FROM [ユーザー名];
オブジェクト権限
REVOKE [権限名] ON [オブジェクト名] FROM [ユーザー名];

SQL Server

ステートメント権限
REVOKE [権限名] FROM [ユーザー名];
オブジェクト権限
REVOKE [権限名] ON [オブジェクト名] FROM [ユーザー名];

MySQL

REVOKE [権限名] ON [テーブル名] FROM [ユーザー名];

PostgreSQL

オブジェクト権限
REVOKE [権限名] ON [オブジェクト名] FROM [ユーザー名];

おわりに

ここまで読んでいただきありがとうございます!

参考文献

・図解 SQL これからはじめる基本の知識 (知りたい!テクノロジー) 単行本(ソフトカバー) – 2010/12/11
島田 裕二 (著)
p.72-73

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?