블로그 서비스의 DB 구축
User 테이블 명세서 Board 테이블 명세서 Reply 테이블 명세서 create database m_board;use m_board;create table user( id int primary key auto_increment, username varchar(100) not null unique, password varchar(255) not null, email varchar(100) not null, userRole varchar(20), createDate timestamp);-- board table, reply table create table board( id int primary key auto_increment, userId int, title varchar(10..