일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DB
- html
- Oracle
- MYSQL
- 날짜
- 호환성
- null
- switch
- 네이버스마트 에디터
- 전자정부 표준프레임워크
- maven
- spring form tag
- exception
- json
- php
- JSTL
- 이클립스
- 문자열
- @RequestBody
- 스크립트
- RADIO
- jquery
- 한글
- java
- 톰캣
- HTML5
- 웹 플랫폼 설치 관리자
- SSL
- checbox
- 오라클
- Today
- Total
목록DB/ORACLE (101)
개인적인 정리
오라클 REMAINDER REMAINDER - REMAINDER(n2, n1) 의 형태 REMAINDER returns the remainder of n2 divided by n1. This function takes as arguments any numeric data type or any nonnumeric data type that can be implicitly converted to a numeric data type. Oracle determines the argument with the highest numeric precedence, implicitly converts the remaining arguments to that data type, and returns theat data ty..
오라클 REGEXP_SUBSTR() REGEXP_SUBSTR() - REGEXP_SUBSTR(source_char, pattern) REGEXP_SUBSTR(source_char, pattern, position, occurence, match_param, subexpr) 의 형태 가 있다.
오라클 REGEXP_REPLACE() REGEXP_REPLACE() - REGEXP_REPLACE(source_char, pattern, replace_string) REGEXP_REPLACE(source_char, pattern, replace_string, position, occurence, match_param) 의 형태 가 있다.
오라클 REGEXP_INSTR() REGEXP_INSTR() - REGEXP_INSTR(source_char, pattern) REGEXP_INSTR(source_char, pattern, position, occurence, return_opt, match_prarm, subexpr) 의 형태 REGEXP_INSTR extends the functionality of the INSTR function by letting you search a string for a regular expression pattern. The function evaluates string using characters as defined by the input character set. It returne an intege..
오라클 REGEXP_COUNT() REGEXP_COUNT() - REGEXP_COUNT(source_char, pattern) REGEXP_COUNT(source_char, pattern, position, match_param) 의 형태 REGEXP_COUNT complements the functionality of the REGEXP_INSTR function by returning the number of times a pattern occurs in a source string. The function evaluates strings using characters as defined by the input character set. It retruns and integer indicating t..
오라클 RAWTOHEX() RAWTOHEX() - RAWTOHEX(raw) 의 형태 RAWTOHEX converts raw to a character value containing its hexadecimal representation. As a SQL built-in function, RAWTOHEX accepts an argument of any scalar data type other than LONG, LONG RAW, CLOB, BLOB, or BFILE. It returns a VARCHAR2 value with the hexadecimal representation of bytes that make up the value of raw. Each byte is represented by two..
오라클 RATIO_TO_REPORT() RATIO_TO_REPORT() - 합계에서 각 row가 차지하는 비율을 구할 때 좋은 것 같다. RATIO_TO_REPORT(expr) OVER(query_partition_clause) 의 형태 RATIO_TO_REPORT is an analytic function. It computes the ratio of a value to the sum of a set of values. If expr evaluates to null, then the ratio-to-report value also evaluates to null. The set of values is determined by the query_partion_clause. If you omit that ..
오라클 RANK() RANK() - RANK(expr) WITHIN GROUP (ORDER BY expr DESC|ASC NULLS FIRST|LAST) RANK() OVER (query_partition_clause order_by_clause) 의 형태 RANK calculates the rank of a value in a group of values. The return type is NUMBER. Rows with equal values for the ranking criteria receive the same rank. Oracle Database then adds the number of tied rows to the tied rank to calculate the next rank. The..