# 사용자 추가 및 Database 생성방법 # 예를 들어 아래와 같이 추가 할 꺼라면.... :: 사용자명 : user_name :: 비밀번호 : user_pass :: DB명 : user_dbname $ mysql -uroot -p mysql Enter password: ***** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 72278 to server version: 4.0.18-standard Type 'help;' or '\h' for help. Type '\c' to clear the buffer. // 데이터베이스 생성 mysql> create database user_dbname; Q..