Oracle SQL은 요일을 현재 날짜로 정렬합니다. (Oracle sql sort week days by current day)


문제 설명

Oracle SQL은 요일을 현재 날짜로 정렬합니다. (Oracle sql sort week days by current day)

I am trying to sort the days based on the order: Saturday, Sunday, Monday, Tuesday, Wednesday, Thursday, Friday.  I am trying using case:

select day,
 CASE day
  WHEN  1 THEN 1
  WHEN  2 THEN 2
  WHEN  3 THEN 3
  WHEN  4 THEN 4
  WHEN  5 THEN 5
  WHEN  6 THEN 6
  WHEN  7 THEN 7
  else 0
  END as day_nr
from week where day in (1,2,3,4,5,6,7)
order by day_nr asc

This is ok when I select all the days of the week. But if I want only for the day 1,5,6 the ordering is not correct. Gets the first day ‑Monday. How to proceed?


참조 솔루션

방법 1:

If you're trying to sort a set of dates by day of the week, with Saturday being the first, then consider ordering by a modified date:

create table t1(my_date date);
insert into t1
select trunc(sysdate)+rownum
from dual
connect by level <= 20

select
  my_date,
  to_char(my_date,'Day'),
  to_char(my_date,'D')
from
  t1
order by
  to_char(my_date + 1,'D');

http://sqlfiddle.com/#!4/5940b/3

The downside is that it's not very intuitive, so add a code comment if you use this method.

Edit: Where you have a list of numbers, order by a case statement with either a list conversion:

case day
  when 1 then 3
  when 2 then 4
  when 3 then 5
  when 4 then 6
  when 5 then 7
  when 6 then 1 ‑‑ saturday
  when 7 then 2
end

... or the more compact, but not as intuitive:

case
  when day <= 5 then day + 2
  else               day ‑ 5
end

order by case 

방법 2:

In Oracle day 1 is Sunday by default.

SELECT * FROM
(
 SELECT trunc(sysdate) + LEVEL‑1 my_dt
      , TO_CHAR(trunc(sysdate) + LEVEL‑1, 'DY') Wk_Day
      , TO_CHAR(trunc(sysdate) + LEVEL‑2, 'D' ) Day#
   FROM dual 
 CONNECT BY LEVEL <= 10
 )
WHERE Day# IN (1,5,6)
ORDER BY my_dt, Day#
/

MY_DT    WK_DAY    DAY#
‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑‑
5/10/2013    FRI    5
5/11/2013    SAT    6
5/13/2013    MON    1
5/17/2013    FRI    5
5/18/2013    SAT    6

(by user2369009David AldridgeArt)

참조 문서

  1. Oracle sql sort week days by current day (CC BY‑SA 3.0/4.0)

#oracle #SQL






관련 질문

Oracle SQL은 요일을 현재 날짜로 정렬합니다. (Oracle sql sort week days by current day)

3개의 변수가 있는 저장 프로시저 작성을 위한 plSQL 구문 (plSQL Syntax For Writing Stored Procedure w/ 3 Variables)

조건에 따라 SQL 쿼리의 UPDATE 문에서 값을 설정하기 위해 동적 열 이름을 설정하는 방법은 무엇입니까? (How to set dynamic column name to set value in UPDATE statement of SQL Query on the basis of condition?)

현재 회계 연도부터 sysdate까지 (Current Financial Year to sysdate)

카운트 최대 시퀀스 행 (Count Max Sequence row)

ORA-01008: 모든 변수가 바인딩되지 않았습니다(매개변수화된 쿼리가 있는 테이블 어댑터에서) (ORA-01008: not all variables bound (in table adapter with parameterized query))

ORA-00979: Oracle에 대한 GROUP BY 표현식이 아니지만 절 차이의 컨텍스트에서 MySQL에 대해서는 유효하지 않습니다. (ORA-00979: not a GROUP BY expression for Oracle but not valid for MySQL in context of clause difference)

#SQL #QUERY #ROWNUM #ORACLE (#SQL #QUERY #ROWNUM #ORACLE)

Oracle을 위한 IS숫자 대안 (ISNumeric Alternatives for Oracle)

다른 열의 열에서 누락된 문자 목록을 찾는 방법 (How to find list of missing characters in a column from another column)

18C 업그레이드의 일부로 OWA_UTIL.who_called_me에서 변경된 사항은 무엇입니까? (What are the changes done in OWA_UTIL.who_called_me as part of 18C upgrade?)

일부 값이 null인 경우 Oracle에서 날짜를 비교하시겠습니까? (Compare date in Oracle when some value is null?)







코멘트