로딩
요청 처리 중입니다...

MySQL 게시판테이블

 MySQL 게시판테이블

mysql> show tables; +-------------------+ | Tables_in_project | +-------------------+ | visit | +-------------------+ 1 row in set (0.00 sec) mysql> create table bbs( -> num int not null primary key, -> mnum int not null, -> snum int not null default 0, -> writer varchar(12) not null, -> email varchar(50) not null, -> topic varchar(200) not null, -> content text not null, -> wday datetime not null, -> pass varchar(12) not null, -> cnt int not null default 0)type=bdb; Query OK, 0 rows affected (0...

# MYSQL # 데이타베이스 # 업무노트 # 웹개발 # 프로그래밍