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] [DCL] アクセス権限の付与・削除

Last updated at Posted at 2024-10-11

一覧

SQL文 詳細
GRANT userstableのuser1に特定の権限(SELECTINSERT)を付与する
GRANT SELECT, INSERT ON users TO user1;
REVOKE userstableのuser1から特定の権限(SELECT)を削除する
REVOKE INSERT ON users FROM use1;B

参考リンク

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?