大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
select * from 表名 where 日期字段 to_date('2016-12-07 08:00:00','yyyy-mm-dd hh24:mi:ss');
普陀网站建设公司成都创新互联,普陀网站设计制作,有大型网站制作公司丰富经验。已为普陀上千提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的普陀做网站的公司定做!
你这个问题应该是问条件中的大于怎么用的吧,比如:找出分数(score)大于60的学生的名字
select name from student where score 60;
在oracle中,where条件后面可以使用 , = , , =, =这些符号的。
1、创建测试表,
create table test_date(id number, times date);
2、插入测试数据
insert into test_date select level, sysdate-level/24/60 t from dual connect by level = 100;
commit;
3、查询表中数据,select t.* from test_date t;
4、编写sql,获取加5分钟大于等于当前系统时间的记录; select t.* from test_date t where times+5/24/60=sysdate;