database create / table create ... /* 참고 URL http://javaclass1.tistory.com/122 */use mysql;show tables;/*사용자 확인*/select * from user;/* 사용자 추가create user '사용자이름'@'접속위치' identified by '비밀번호'; 쿼리에서 접속 위치를 %로 하시면 어디에서든 그 계정으로는 접속이 가능합니다create user 'test_BBS'@'%' identified by 'xxxxxxxx'; */create user 'test_BBS'@'%' identified by 'xxxxxxxx'; /*db 추가*/create database test_BBS; use test_bbs; /*사용자별 데이..