1. 계정 추가
mysql> create user userid@localhost identified by '비밀번호';
계정 삭제
mysql> drop user userid@localhost;
2. DB, table에 권한 주기
mysql> grant select, insert, update privileges on DB명.테이블 to 아이디@host identified by '비밀번호';
mysql> grant all privileges on DB명.테이블 to 아이디@host identified by '비밀번호';
'웹 > MySQL' 카테고리의 다른 글
MySQL 계정 생성, 권한 부여 (0) | 2018.05.28 |
---|---|
MySQL 기본 명령어 (Column) (0) | 2014.09.08 |
mysqli_fetch_array() (0) | 2014.09.08 |
MySQL 자료형(Data Type) (0) | 2014.09.06 |
MySQL 기본함수 (0) | 2014.09.04 |