관리 메뉴

moozi

11/26 ex02 본문

TIS_2020/빅데이터2020_1기

11/26 ex02

moozi 2020. 11. 26. 11:25

ex02.zip
1.51MB

create sequence seq_board;
create table tbl_board(
    bno number(10,0),
    title varchar2(200) not null,
    content varchar2(2000) not null,
    writer varchar2(50) not null,
    regdate date default sysdate,
    updatedate date default sysdate
);
alter table tbl_board add constraint pk_board primary key(bno);

insert into tbl_board(bno,title,content,writer)
values(seq_board.nextval,'테스트제목','테스트내용','user00');

commit;

select * from tbl_board;

'TIS_2020 > 빅데이터2020_1기' 카테고리의 다른 글

11/27 web.xml  (0) 2020.11.27
11/26 root_context.html  (0) 2020.11.26
11/25 ex01  (0) 2020.11.25
11/24 helloworld  (0) 2020.11.24
socket.io express http  (0) 2020.11.23
Comments