OracleCommand
クラス を使用して次のクエリを実行しようとしています。
しかし、私はこのエラーが発生します:
「ORA-00920 関係演算子が無効です」。
日付の値に関係していると確信しています。しかし、それを修正する方法がわかりません。手伝ってくれる?
select s.store_code,count(i.invc_sid) as count
from invoice_v i
Left join store_v s
ON i.sbs_no and i.store_no = s.store_no
Where(i.created_date between to_date('02//01//2014','MM//DD//YY')
and to_date('02//28//2014','MM//DD//YY'))
and i.proc_status not in ('131072','65536','147456', '81920')
and i.invc_type = 0 AND i.sbs_no = 6
GROUP BY s.store_code";
ありがとう