How to grant all privileges to a user from all machines
- برمجة سي كيو ال sql
- 2021-09-02
- mhanasmh00489829403
الأجوبة
grant [<permission_1,permission_2,...permission_n>|<all>]
on [database].[<table_name>|<all_tables(*)>]
to [user name]@[<localhost>|<IP address>|<any host('%')>]
identified by ["password"];
Example :
grant all on posts.* to joy@'%' identified by 'mypassword';
flush privileges;
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال