将一天转换为日期

时间:2016-07-19 19:23:42

标签: sql oracle date date-arithmetic date-conversion

是否可以将年份中的某一天转换为日期?

例如,在oracle中,我可以通过以下方式获取年份中的日期:

extends React.Component

我需要反向执行一些日期算术。

2 个答案:

答案 0 :(得分:0)

要将其转换回日期,请使用while IFS= read -r -d '' file; do IFS='_/' read -ra arr <<< "$file" echo "${arr[2]} ${arr[3]}" done < <(find ./images -type f -print0) 0000 somefilename1 1111 somefilename2 2222 somefilename3 3333 somefilename4

to_date

List of valid parameters for to_date

答案 1 :(得分:0)

你也可以加回到年份开始日期,就像这样

with a as ( Select to_char(sysdate,'ddd') y_num_day from dual )

select trunc(sysdate,'year') + to_number(a.y_num_day) - 1 from a