Answers for "mariadb alter user host"

SQL
1

mariadb alter user host

UPDATE mysql.user SET Host='%' WHERE Host='localhost' AND User='username';
FLUSH PRIVILEGES;
Posted by: Guest on November-27-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language