日期有空格等查詢不到的問題

2021-08-31 22:04:29 字數 880 閱讀 1325

問題**

select * from om_exp a, om_exp_item b

where a.exp_no = b.exp_no and a.exp_type = 'om' and a.fast_flag = '0' and

a.updt_name = 'bkloc' and

a.updt_date between

to_date(to_char(sysdate - &1, 'yyyymmdd') || ' 00:00:00',

'yyyymmdd hh24:mi:ss') and

to_date(to_char(sysdate - &1, 'yyyymmdd') || ' 23:59:59',

'yyyymmdd hh24:mi:ss')

group by to_date(to_char(a.updt_date, 'yyyymmdd'), 'yyyymmdd'),

這個查日期,如果日期格式不對,有空格等是查詢不到的,比如

select * from om_exp a where a.updt_date like '2011-11-09%'  可以查到

select * from om_exp a where a.updt_date='2011-11-09' 不可以查到

select * from om_exp a where a.updt_date='2011-11-10' 可以查到

解決辦法為

select * from om_exp a where a.updt_date>='2011-11-09' and a.updt_date<='2011-11-10'
查詢到的就為9號一天的

C 的Session偶爾查詢不到的問題

a使用者登入,退出,b使用者登入,有時會顯示a,有時會顯示未登入,而且有時顯示未登入有時重新整理頁面就行了,有時重新整理頁面都不行必須重新登入。1.顯示未登入,必須重新登入的原因是伺服器中的重啟,session全部清空。2.有時顯示a使用者,有時顯示b使用者,有時顯示未登入原因是ajax通訊是設定的...

SQL 中 not in 查詢不到資料問題

在開發的過程中,遇到過not in 始終查詢不到資料問題 select from t customerinfo where customerid not in select customerid from t orderinfo 後來使用not exists查詢 select from t cust...

WPF動態控制項生成查詢不到問題

2012 08 10 遇到此類問題,已經找到解決方案 記錄以備後用 動態往介面新增控制項 在頁面未顯示的情況時,雖然對控制項增加了id name等屬性但是使用 textbox txtothernation visistcaseopergrid.findname txtothernation as t...