일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 절차적 프로그래밍
- Java
- 튜토리얼
- CPS
- 인터페이스
- 연산자
- 시나공
- Spring
- C
- 변수
- w3schools
- node.js
- jquery
- Git
- 참고
- 데이터타입
- 정보처리기사
- 개요
- HTML
- 요구사항확인
- web
- SVG
- JavaScript
- IO
- xss
- format
- Python
- SEQUENCE
- Filter
- oracle
- Today
- Total
목록전체 글 (30)
맛집탐방
ElementDescriptionAttributes Creates a link around SVG elements xlink:show xlink:actuate xlink:href target Provides control over the glyphs used to render particular character data x y dx dy rotate glyphRef format xlink:href Defines a substitution set for glyphs id Defines a candidate set of glyph substitutions id Defines how an attribute of an element changes over time attributeName="the name o..
https://fonts.google.com/?subset=korean
http://jsfiddle.net JSFiddle - Code Playground jsfiddle.net http://codepen.io CodePen An online code editor, learning environment, and community for front-end web development using HTML, CSS and JavaScript code snippets, projects, and web applications. codepen.io
sequence 번호 추출(규칙):중복값이 없고 순차적인 값 create sequence board_num; select*from SYS.USER_SEQuences; nextval과 currval의 사용 1)nextval은 다음 사용 가능한 sequence값을 반환 한다. 2)sequence가 참조될 때 마다, 다른 사용자에게 조차도 유일한 값을 반환한다. 3)currval은 현재 sequence값을 얻는다. 4)currval이 참조되기 전에 nextval값이 사용되어야 한다. --번호추출 select board_num.nextval from dual; --현재까지 채번한 값을 확인 select board_num.currval from dual;
alter session set nls_date_format=YYYY-MM-DD HH:MI:SS;