-- 테이블생성
create table test(
id number(5) primary key,
name varchar(15));
--시퀀스 생성
create sequence test_seq;
--시퀀스 이용한 데이터 입력
insert into test(id,name) values (test_seq.nextval,'kang');
--시퀀스 확인 --
select test_seq.currval from dual;
'프로그래밍 > sql Tip' 카테고리의 다른 글
풀어보아요.2~~ (14) | 2020.07.14 |
---|---|
풀어보아요~~^^ (1) | 2020.07.13 |
OUTER JOIN (0) | 2015.07.16 |
comment 확인하는 쿼리 (0) | 2015.07.10 |
sql 실습문제 링크들.. (0) | 2015.07.09 |