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 |
Tags
- springboot
- jcenter
- 자바
- HTML모드
- JPA Auditing
- 백준
- JavaScript
- 사용자관리프로그램
- 상속
- springDataJPA
- 카카오코딩테스트
- mavenCentral
- 컬렉션프레임워크
- 깃허브
- Spring
- 멀티쓰레드
- 템플릿엔진
- Swing
- 인스턴스
- 클래스
- Oracle
- 생성자
- 서버
- SwingCalendar
- java
- 클라이언트
- 코딩
- socket
- 메소드
- 바인드변수
Archives
- Today
- Total
프리 정보 컨텐츠
oracle 숫자, 날짜 관련 함수 본문
select
ABS(-2) c1,
floor(2.3) c2,
power(2, 3) c3,
sign(1) c4,
sign(-1) c5,
sqrt(25) c6,
trunc(10.232, 1) c7,
ADD_MONTHS(to_date('20211104', 'yyyymmdd'), 3) c8,
extract(year from sysdate) c9,
extract(month from sysdate) c10,
extract(day from sysdate) c11,
NEXT_DAY('20211224', 4) c12,
sysdate c13,
trunc(sysdate) c14,
last_day(sysdate) c15
from
dual;
Comments