Database 란?
DBMS 란?
관계형 데이터베이스(Relational DB) 란?
SQL 구성
show databases; create database dbname; use dbname; drop database dbname;
use mysql; select host, user from user; # 내부에서 접속 가능한 사용자 create user 'username'@'localhost' identified by 'password'; # 외부에서 접속 가능한 사용자 create user 'username'@'%' identified by 'password';
grant all on dbname.* to 'username'@'localhost'; flush privileges; # 새로고침 show grants for 'username'@'localhost'; revoke all on dbname.* from 'username'@'localhost'; # 권한 삭제