티스토리 뷰
mysql 접속
mysql -u root -p
사용자 추가
create user 'user'@'localhost' identified by 'password';
사용자 삭제
drop user 'user'@'localhost';
데이터베이스 생성
create database db명 default character set utf8;
권한부여
grant all privileges on db명.테이블 to 'user'@'localhost';
grant all privileges on db명.* to 'user'@'localhost';
grant all privileges on db명.* to 'user'@'%';
flush privileges;
권한확인
show grants for 'usuer'@'localhost';
'데이터베이스 > Oracle, MySQL' 카테고리의 다른 글
트랜잭션 격리 수준(Transaction isolation level) (0) | 2021.03.10 |
---|
댓글