1) 사용자 추가하기 1 create user 'abc'@'localhost' identified by '1234'; cs id: abc password : 1234 2) 사용자 삭제하기 1 2 drop user 'abc'@'localhost'; cs 3) 권한 부여하기 1 2 3 4 5 -- 모든 권한 부여하기 -- all privieges 는 모든 권한을 *.*은 모든 데이터베이스의 모든 테이블을 뜻한다. grant all privileges on *.* to 'abc'@'localhost'; grant all privileges on sqldb.* to 'abc'@'localhost'; grant all privileges on sqldb.usertbl to 'abc'@'localhost'; cs ..