SQL Commands Part 3(Grant and Revoke). Session 10

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024
  • • DCL (Data Control Language) Deal with the rights, permissions, and other controls of the database system
    GRANT - We provide access or privileges on the database objects to the users.
    REVOKE - with this command we can take back permission from users.
     create login sunny with password='1234' -- login
     create user pandita for login sunny -- user
     grant insert on student to pandita -- proving access to user pandita
     grant select, insert, update on student to pandita -- multiple access
     revoke insert on student to pandita
     revoke select, insert, update on student to pandita

Комментарии • 8

  • @nishapandita
    @nishapandita 9 месяцев назад

    One of the best videos on Grant and Revoke. Understood all the concepts clearly.

  • @AzharudeenHithayathullah
    @AzharudeenHithayathullah 9 месяцев назад +1

    Really helpful. Please keep doing it.

  • @yogeshpandita7828
    @yogeshpandita7828 9 месяцев назад +1

    Salute sir. I have no words to say.
    Your teaching is awesome ❤
    Take care sir ji

  • @nishapathania146
    @nishapathania146 9 месяцев назад +1

    Very well explained

  • @RohitThakur-xu5wd
    @RohitThakur-xu5wd 8 месяцев назад

    Can you please make one video on CTE and one on window functions to understand logic and syntax.....with brief