SQL :: ORACLE :: 오라클 :: 자동증가값 :: 시퀸스 :: SEQUENCE
게시판의 게시글 넘버 사용시 오라클일경우 시퀸스를 쓴다. 내가 알고 있기론 오라클에서 자동증가값이 시퀸스 밖에 없는걸로 안다.. (MYSQL 에서의 자동증가값 쓰다가 캐 삾질) --유저 message에서의 테이블 생성 create table message( num number(10) primary key, name varchar(30) not null, email varchar(50) null, message varchar(300) not null, sourceip varchar(15) null, writedate timestamp null ); --message에서 시퀸스 생성(유저네임) create sequence 유저네임_no start with 1 increment by 1; 예)create se..