728x90 반응형 웹/DataBase1 자주 사용하는 mysql DB 명령어 DB 유저 생성create user 'dbuser'@'localhost' identified by 'password'; DB 생성create database dbname; DB 권한 설정grant all privileges on `dbname`.* to dbuser@localhost identified by 'password' with grant option; DB 유저 삭제DROP USER 'dbuser'@'localhost'; DB 삭제drop database dbname DB 적용flush privileges; Table 생성create table account (idx INT(4) NOT NULL AUTO_INCREMENT,name VARCHAR(20) NOT NULL,id VARCHAR(20) .. 2017. 2. 4. 이전 1 다음 728x90 반응형