◆ tbl_board - 게시판 테이블 생성
페이지 정보
본문
create table tbl_board (
bno int not null auto_increment,
title varchar(255) not null,
content text null,
writer varchar(50) not null,
regdate TIMESTAMP not null default now(),
viewcnt int default 0,
primary key(bno)
);
insert into tbl_board (title, content, writer) values ("제목 이란다.","내용이란다.","1111");
- 이전글▲ BoardMapperTests.java - JUnit 테스트 24.07.30
- 다음글====== ■ ex02 프로젝트 - 생성 및 설정 - ( Maven Project 전환 ) ■ ====== 24.07.29
댓글목록
등록된 댓글이 없습니다.