DEV Community

sunj
sunj

Posted on

MySQL, 유저 보기 및 비밀번호 업데이트

use mysql;
select user, host from user;
Enter fullscreen mode Exit fullscreen mode
alter user '///'@'%' identified with mysql_native_password by '///';
Enter fullscreen mode Exit fullscreen mode

Top comments (0)