SQL学习(八)日期处理
不同数据库中,针对日期处理的函数不同
Oracle中常用日期函数
(1、sysdate:
获取当前系统时间
如:
select sysdate()
----返回当前时间,包括年月日 时分秒
(2、to_date('字符类型','日期类型')
将字符串类型转换日期类型
如:
select * from ticket where create_date=to_date('2019-01-01','yyyy-mm-dd')
---查询出,create_date为2019-01-01的数据
(3、to_char('日期类型','字符格式')
将日期类型转换为字符类型
如:
select * from ticket where to_char(create_date,'yyyy')>2000
---查询出create_date中年份大于2000的数据