sql >> データベース >  >> RDS >> Oracle

SQLで週番号を抽出する方法

    varchar2を変換した後 真のdateまでの日付 データ型を入力してから、varchar2に変換し直します 希望のマスクで:

    to_char(to_date('01/02/2012','MM/DD/YYYY'),'WW')
    

    numberに週番号が必要な場合 データ型の場合、ステートメントをto_number()でラップできます。 :

    to_number(to_char(to_date('01/02/2012','MM/DD/YYYY'),'WW'))
    

    ただし、考慮すべき週数のオプションがいくつかあります。

    WW  Week of year (1-53) where week 1 starts on the first day of the year and continues to the seventh day of the year.
    W   Week of month (1-5) where week 1 starts on the first day of the month and ends on the seventh.
    IW  Week of year (1-52 or 1-53) based on the ISO standard.
    


    1. MariaDBがJSON_TABLE()関数を導入

    2. psqlの代替出力形式

    3. PostgreSQLCASE...複数の条件で終了

    4. SQL Server:動的なwhere句