DataBase/MySQL (1) 썸네일형 리스트형 [MySQL] 사용자 계정 추가 [mysql@dev]$ mysql -uroot -p Enter password: (root@localhost) [(none)]> create database batch; create user 'batch'@'%' identified by 'password1!'; grant all privileges on batch.* to batch@'%' identified by 'password1!'; 이전 1 다음