Varchar2型の変換列があり、次のエントリがあります
01/02/2012
01/03/2012
等.
To_date関数を使用して、別の列で日付形式に変換しました。これは私が得た形式です。
01-JAN-2012
03-APR-2012
Weeknoを抽出しようとすると、すべてのnull値が取得されます。
テーブル名からweeknoとしてto_char(to_date(TRANSDATE)、 'w')を選択します。
null
null
上記の形式で日付からweeknoを取得する方法は?
_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.
_
「w」を「iw」に置き換えてみてください。例えば:
SELECT to_char(to_date(TRANSDATE, 'dd-mm-yyyy'), 'iw') as weeknumber from YOUR_TABLE;
Select last_name, round (sysdate-hire_date)/7,0) as tuner
from employees
Where department_id = 90
order by last_name;