问题遇到的现象和发生背景
前端页面发现经常查不出数据,用pl/sql连数据库发现用语句查也是一样的情况,对于只是一个运维的我,人都要裂开了,求帮忙看看是哪里出了问题,
可以看下我发在社区的这个帖子,里面有视频。
这个是社区链接https://bbs.csdn.net/topics/603877676
select count() from detect_speed_data t
where t.dcollectiondate between
to_date('2021-12-10 00;00;00', 'yyyy-mm-dd HH24;mi;ss') and
to_date('2021-12-10 23;59;59', 'yyyy-mm-dd HH24;mi;ss');
//
select t.rowid,t. from detect_speed_data t
where t.dcollectiondate between
to_date('2021-12-10 00;00;00', 'yyyy-mm-dd HH24;mi;ss') and
to_date('2021-12-10 23;59;59', 'yyyy-mm-dd HH24;mi;ss');
//
select count() from detect_speed_data t
where t.dcollectiondate between
to_date('2021-12-22 00;00;00', 'yyyy-mm-dd HH24;mi;ss') and
to_date('2021-12-22 23;59;59', 'yyyy-mm-dd HH24;mi;ss');
//
select t.rowid,t. from detect_speed_data t
where t.dcollectiondate between
to_date('2021-12-22 00;00;00', 'yyyy-mm-dd HH24;mi;ss') and
to_date('2021-12-22 23;59;59', 'yyyy-mm-dd HH24;mi;ss');
//
select count(*) from(select * from detect_speed_data where dcollectiondate > sysdate - 60/1440)