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 | 31 |
Tags
- Ionic modal
- scroll
- modal
- 셀렉트박스 커스텀
- Oracle LISTAGG 사용 예시
- ApexChart
- TAILWIND
- 앵귤러 모달
- 앵귤러 애니메이션
- route
- angular button
- angular route
- angular modal
- prisma
- mysql if
- 스크롤 이벤트
- 스크롤 이벤트 감지
- 검색
- 아이오닉 스크롤 이벤트
- 호버
- egov spring ajax 사용 예시
- ajax 사용 예시
- angular animation
- flex-1
- summary
- 모달
- formgroup
- 옵저버블
- Angular Router
- Router
Archives
- Today
- Total
목록postgre auto increment (1)
깜놀하는 해므찌로

1. Qurey 클릭 CREATE SEQUENCE my_seq; DROP SEQUENCE my_seq; 2. 시퀀스 생성 select setval('my_seq', 1, false) 3. 시퀀스 초기값 설정 false 를 할 경우 nextval 사용 시 최초 1부터 시작, true 는 2부터 시작 4. run 쿼리문 실행 5. 이제 테이블로 돌아와서 우클릭 design table 선택 6. seq 설정할 컬럼 선택 후 default 설정 nextval('my_seq'::regclass) 입력 7. 만일 위 방식이 안 되면 nextval('my_seq') 이렇게만 입력하세요.
IT
2023. 7. 29. 19:25