-
[MySQL] MySQL 계정생성 ,(DATAGRIP 연결용 비공개)Data/MySQL 2020. 4. 17. 01:38
create user '계정아이디'@localhost identified by '비밀번호';
create user 'winone'@'%' identified by 'songnamcheong123!';
grant all privileges on `FinishedDay`.* to `winone`@`%` identified by 'songnamcheong123!' with grant option;
flush privileges
https://medium.com/cory-mayfield/linking-amazon-rds-with-jetbrains-datagrip-d5cc0e2f44f4
'Data > MySQL' 카테고리의 다른 글
[MySQL] 자주 사용하는 쿼리 (0) 2020.04.22