create database DB명;

mysql> grant select,insert,update,delete,create,drop,index on sspipedb.*to '디비명'@'localhost' 
    -> identified by '비번';

mysql> flush privileges;

mysql> 프롬프트가 나오면

grant (권한을 부여한다는 뜻) select (검색 권한), insert (입력 권한), update (수정 권한),

delete (삭제 권한), create (테이블 등을 만들 수 있는 권한), drop (삭제 권한),

index (인덱스 관리 권한)

엔터 하면 -> 기호가 나온다. 줄 바꿈 표시라고 보면 된다.

on 데이터베이스 이름.* to '새로만들user아이디'@'localhost'

indentified by '새로사용할password';

+ Recent posts