게시판 테이블

1 개요

게시판 테이블
게시판 DB
  • 간단히 게시판 만들 때 사용

2 테이블 개요

컬럼명 자료형 제약조건 설명
id int unsigned, primary key 글번호
subject varchar(255) 제목
content text 내용
reg_datetime datetime 작성일시
hit int unsigned 조회수

3 MySQL 테이블 생성문

CREATE TABLE IF NOT EXISTS board1 ( 
 id int(11) unsigned NOT NULL AUTO_INCREMENT,
 subject varchar(32) NOT NULL,
 content mediumtext,
 created datetime,
 user_id int(11) unsigned NOT NULL,
 user_name varchar(20) NOT NULL,
 hit int(10) unsigned NOT NULL default '0',  
 PRIMARY KEY (id)
) TYPE=MyISAM, CHARSET=utf8;
  • phpMyAdmin에 접속 --- 로그인 --- DB 선택 --- [SQL] 탭 클릭 --- 위 내용 붙여넣기 --- [GO] 버튼 클릭

4 같이 보기

5 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}