일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오라클
- HTML5
- SSL
- spring form tag
- 웹 플랫폼 설치 관리자
- exception
- php
- RADIO
- 이클립스
- checbox
- 톰캣
- 네이버스마트 에디터
- 한글
- MYSQL
- null
- DB
- 전자정부 표준프레임워크
- Oracle
- @RequestBody
- 문자열
- switch
- jquery
- 스크립트
- java
- html
- 날짜
- JSTL
- maven
- json
- 호환성
- Today
- Total
목록DB (197)
개인적인 정리
오라클 COALESCE() COALESCE returns the first non-null expr in the expression list. You must specify at least two expressions. If all occurences of expr evaluate to null, then the function returns null. SQL > SELECT COALESCE(NULL, 5,4,3,2,1, 0) FROM DUAL ; --> 5 SQL > SELECT COALESCE(NULL, 5,NULL,3,2,1, 0) FROM DUAL ; --> 5 SQL > SELECT COALESCE(NULL, NULL, 0) FROM DUAL ; --> 0 SQL > SELECT COALESCE..
오라클 CHR() CHR returns the character having the binary equivalent to n as a VARCHAR2 value in either the database character set or, if you specify USING NCHAR_CS, the national character set. SQL> SELECT CHR(67) || CHR(65) || CHR(84) FROM DUAL ; --> CAT 이 함수를 유용하게 사용한 적이 있다. 쿼리내에서 https://~~~~?aaa=value1&bbb=value2 이런 것을 만들어서 vo에 던진 후에 사용할려고 보니 자꾸 오류가 발생을 해서 CHR을 이용하여 해결한적이 있었다. SQL > SELECT CHR(6..
오라클 CEIL() CEIL returns the smallest integer that is greater than or equal to n. The number n can always be written as the difference of an integer k and a positive fraction f suhc that 0 101 SQL> SELECT CEIL(-100.1) FROM DUAL ; --> -100
오라클 CAST() CAST converts one built-in data type or collection-typed value into another built-in data type or collection-typed value. CAST lets you convert built-in data types or collection-typed values of one type into another build-in data type or collection type. You can cast an unnamed operand(such as a date or the result set of a subquery) or a named collection(such as a varry or a nested ta..
오라클 AVG() AVG returns average value of expr. This function takes as an argument any numeric data type or any nonumeric data type that can be implicitly converted to a numeric data type. The function returns the same data type as the numeric data type of the argument. If you specify DISTINCT, then you can specify only the query_partition_clause of the analytic_clause. The order_by_clause and wind..
오라클 ATAN2() ATAN2 returns the arc tangent of n1 and n2. The argument n1 can be in an unbounded range and returns a value in the range of -pi to pi, depending on the signs of n1 and n2, expressed in radians. SQL > SELECT ATAN2(-2, 1) FROM DUAL ; --> -1.10714871779409
오라클 ATAN() ATAN return the arc tangent of n. The argument n can be in an unbounded range and returns a value in the range of -pi / 2to pi /2, expressed in radians. SQL> SELECT ATAN(-2) FROM DUAL ; --> -1.10714871779409
오라클 ASIN 함수 ASIN returns the are sine of n. The argument n must be in the range of -1 to 1, and the function returns a value in the range of -pi / 2 to pi / 2, exrpessed in radians. SQL> SELECT ASIN(.3) FROM DUAL ; --> 0.304692654015398 SQL> SELECT ASIN(-2) FROM DUAL ; --> ORA-01428: argument '-2' is out of range 라는 오류가 발생.