Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 참조형변수
- NestedFor
- 생성자오버로드
- 한국건설관리시스템
- 컬렉션 타입
- 어윈 사용법
- 자바
- 메소드오버로딩
- cursor문
- 인터페이스
- 예외처리
- 오라클
- 사용자예외클래스생성
- 예외미루기
- exception
- 환경설정
- 추상메서드
- 컬렉션프레임워크
- 집합_SET
- abstract
- 자동차수리시스템
- 정수형타입
- GRANT VIEW
- Java
- 객체 비교
- oracle
- 다형성
- 제네릭
- EnhancedFor
- 대덕인재개발원
Archives
- Today
- Total
거니의 velog
231216_SPRING CRUD 보강 1 본문
----------------------------------------------------
-- 2023.12.16(토) 보강
-- 회원 및 게시판, 파일 테이블
DROP TABLE member;
DROP TABLE board;
DROP TABLE boardfile;
DROP SEQUENCE seq_member;
DROP SEQUENCE seq_board;
DROP SEQUENCE seq_boardfile;
-- 회원 테이블 작성 쿼리
create table member(
mem_no number(8) not null,
mem_id varchar2(150) not null,
mem_pw varchar2(150) not null,
mem_name varchar2(150) not null,
mem_nickname varchar2(300) not null,
mem_regdate date not null,
constraint pk_member primary key(mem_no)
);
-- 회원 sequence 작성 쿼리
create sequence seq_member increment by 1 start with 1 nocache;
-- 게시판 테이블 작성 쿼리
create table board(
bo_no number(8) not null,
bo_title varchar2(300) not null,
bo_content varchar2(4000) not null,
bo_writer varchar2(150) not null,
bo_date date not null,
bo_hit number(8) default 0 null,
constraint pk_board primary key(bo_no)
);
-- 게시판 sequence 작성 쿼리
create sequence seq_board increment by 1 start with 1 nocache;
-- 게시판 파일 테이블 작성 쿼리
create table boardfile(
file_no number(8) not null,
bo_no number(8) not null,
file_name varchar2(300) not null,
file_size number(20) not null,
file_fancysize varchar2(100) not null,
file_mime varchar2(100) not null,
file_savepath varchar2(400) not null,
file_downcount number(8) not null,
constraint pk_boardfile primary key(file_no),
constraint fk_noticefile_bo_no foreign key(bo_no) references board(bo_no)
);
create sequence seq_boardfile increment by 1 start with 1 nocache;
commit;
http://localhost/board/list.do
http://localhost/board/detail.do
http://localhost/board/form.do
http://localhost/signin.do
http://localhost/signup.do
'대덕인재개발원_웹기반 애플리케이션' 카테고리의 다른 글
231216_SPRING CRUD 보강 3 (0) | 2023.12.16 |
---|---|
231216_SPRING CRUD 보강 2 (0) | 2023.12.15 |
231213_SPRING 2 (16-1) (0) | 2023.12.12 |
231212_SPRING 2 (15-2) (0) | 2023.12.12 |
231212_SPRING 2 (15-1) (0) | 2023.12.11 |