반응형
접속
mysql -u root -p
데이터베이스 확인
show databases
데이터베이스 사용
use database
권한설정
grant all privileges on dbname.table to userid@host identified by 'password';
외부접속 가능한 권한설정
grant all privileges on *.* to userid@'%' identified by 'password';
권한 적용
flush privileges;
반응형
'데이터베이스 > MYSQL' 카테고리의 다른 글
DELETE LEFT JOIN (0) | 2020.02.18 |
---|---|
시구동 관련 법정동 자료 (0) | 2020.01.17 |
ROWNUM (0) | 2020.01.13 |
lastInsertId (0) | 2019.08.14 |
TINYBLOB, BLOB, MEDIUMBLOB and LONGBLOB 자료형 (0) | 2018.11.02 |