select * from 表名 where 日期字段 to_date('2016-12-07 08:00:00','yyyy-mm-dd hh24:mi:ss');
普陀網(wǎng)站建設公司成都創(chuàng)新互聯(lián),普陀網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為普陀上千提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務好的普陀做網(wǎng)站的公司定做!
你這個問題應該是問條件中的大于怎么用的吧,比如:找出分數(shù)(score)大于60的學生的名字
select name from student where score 60;
在oracle中,where條件后面可以使用 , = , , =, =這些符號的。
1、創(chuàng)建測試表,
create table test_date(id number, times date);
2、插入測試數(shù)據(jù)
insert into test_date select level, sysdate-level/24/60 t from dual connect by level = 100;
commit;
3、查詢表中數(shù)據(jù),select t.* from test_date t;
4、編寫sql,獲取加5分鐘大于等于當前系統(tǒng)時間的記錄; select t.* from test_date t where times+5/24/60=sysdate;