本文目录一览:
oracle 怎么查看当前日期
select
*
from
nls_session_parameters;
select
*
from
nls_instance_parameters;
select
*
from
nls_database_parameters;
其中的nls_time_format就是日期格式,这三句分别是会话级,实例级和数据库级的
oracle怎么查询时间?
写法有很多种,例如下面的:
方法一:select * from dual where time between to_date('2012-06-18 00:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2012-06-18 23:59:59','yyyy-mm-dd hh24:mi:ss');
方法二:select * from dual where to_char(time,'yyyy-mm-dd')='2012-06-18';
方法三:select * from dual where trunc(time)=to_date('2012-06-18','yyyy-mm-dd');
当然楼主也可以按上面的先转换下日期的显示格式再查询撒,都可以的,呵呵!!!
oracle日期查询
select * from A where To_Char(a.Impdate, 'yyyy-MM-dd hh24:mi:ss')
between('2013-07-22 00:00:00')and ('2013-07-22 23:59:59' );
select * from A where a.Impdate = trunc(sysdate) -1 and a.impdate trunc(sysdate)
发布于 2022-09-26 16:43:44 回复
发布于 2022-09-26 22:31:02 回复
发布于 2022-09-26 22:09:32 回复
发布于 2022-09-26 17:12:55 回复
发布于 2022-09-26 22:34:35 回复