Orcale日期函数to_date()及to_char()

日期转换的两个函数分别是to_date()和to_char(),to_date() 作用将字符类型按一定格式转化为日期类型, to_char() 将日期转按一定格式换成字符类型

其中当时间需要精确的时候,最好使用to_char()使用字符类型进行比较,比较方法(=、>=、 <=、between and )<、>需要转义,分别为< >

to_date:

to_date(‘2018-01-20′,’yyyy-mm-dd’),前者为字符串,根据传入的格式模板将字符串日期为转为特定格式的date格式

需要注意的是当转换的日期格式包含时分秒:to_date(‘2018-01-20 12:34:56’, ‘yyyy-mm-dd hh24:mi:ss’),模板有hh,hh12(按照12小时制,12小时格式下时间范围为: 0:00:00 – 23:59:59) hh24:()按照24小时制,取值为0:00:00 – 23:59:59)

to_char:

to_char(datetype,’yyyy-mm-dd hh24:mi:ss’) 将传入的格式为date的日期 datetype转成字符类型的年月日

查询给定日期是周几:

select to_char(to_date(‘2018-01-20′,’yyyy-mm-dd’),’day’) from dual; //星期六

获取给定时间的七天前的日期:

string createtime = “2018-01-20” calendar before7day = calendar.getinstance();

date date = null; try {

date = new simpledateformat(“yy-mm-dd”).parse(createtime);

before7day.settime(date);

int day = before7day.get(calendar.date);

before7day.set(calendar.date, day – 7);

string daybefore = new simpledateformat(“yyyy-mm-dd”).format(before7day.gettime());} catch (parseexception e) { e.printstacktrace();}

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐