목록SQL/Oracle SQL (1)
First Starters
SQL 실습 : next_day() 요일 오류
cmd의 sqlplus에서 작성 오류코드 : ORA-01846: not a valid day of the week SQL> select next_day(sysdate, 'monday') from dual; ERROR at line 1: ORA-01846: not a valid day of the week 원인: next_day의 요일 형식 'monday'가 sqlplus의 nls_date_language에 맞지 않는 형식이기 때문이다. sqlplus의 nls_date_language 확인방법: select * from nls_session_parameters; 확인 결과: NLS_DATE_LANGUAGE KOREAN 즉, nls_date_language가 korean으로 설정되어 있어, american ..
SQL/Oracle SQL
2021. 2. 4. 02:06