아래와 같은 Oracle Query를 Informix에서 수행하니 에러가
발생합니다.
아래는 10일간의 고객수를 구하는 것인데,
특정일자에 A와 B점포를 각각 방문하는 경우는 각각 고객수를
계산하려고
합니다.
많은 조언 부탁드립니다.
---<< oracle query
>>--------------------------------
select count(distinct store||sale_date)
from customder
where sale_date between '20050101' and '20050110'
----------------------------------------------------
|