1. DB 테이블 생성
페이지 정보
작성자 관리자 댓글 0건 조회 1,211회 작성일 22-01-13 19:01본문
1. DB 테이블 생성
다음 SQL을 사용하여 테이블을 추가한다.
create table bbs (
b_no int unsigned not null primary key auto_increment,
b_subject varchar(100) not null,
b_content text not null,
b_date datetime not null,
b_hit int unsigned not null default 0,
b_id varchar(20) not null,
b_pw varchar(50) not null
);
댓글목록
등록된 댓글이 없습니다.