300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > oracle 日期改字符格式_Oracle时间转换成字符串

oracle 日期改字符格式_Oracle时间转换成字符串

时间:2021-03-20 07:07:17

相关推荐

oracle 日期改字符格式_Oracle时间转换成字符串

1. 日期和字符转换函数用法(to_date,to_char)

select to_char(sysdate,yyyy-mm-dd hh24:mi:ss) as nowTime from dual; //日期转化为字符串

select to_char(sysdate,yyyy) as nowYear from dual; //获取时间的年

select to_char(sysdate,mm) as nowMonth from dual; //获取时间的月

select to_char(sysdate,dd) as nowDay from dual; //获取时间的日

select to_char(sysdate,hh24) as nowHour from dual; //获取时间的时

select to_char(sysdate,mi) as nowMinute from dual; //获取时间的分

select to_char(sysdate,ss) as nowSecond from dual; //获取时间的秒

select to_date(-05-07 13:23:44,yyyy-mm-dd hh24:mi:ss) from dual//

2.

select to_char( to_date(222,J),Jsp) from dual

显示Two Hundred Twenty-Two

3.求某天是星期几

select to_char(to_date(2002-08-26,yyyy-mm-dd),day) from dual;

星期一

sel

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。