1. php_exam 이라는 DB에 member 라는 테이블 생성 ================================================================== mysql> show databases; +----------+ | Database | +----------+ | company | | mysql | | onepiece | | php_exam | +----------+ 4 rows in set (0.00 sec) mysql> use php_exam; Database changed mysql> show tables; +--------------------+ | Tables_in_php_exam | +--------------------+ | php_tbl | +------..