|
|
Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
I have a worksheet that I need to update on a daily basis with data from an external Oracle database. I am using the following query which gets yesterday's data (the Oracle data is always for the previous day).
SELECT Sum(recno) FROM mailboxes WHERE (trunc(logdate)=trunc(sysdate-1))
This sums the values in the rec_no column for all rows that were logged yesterday. The thing is that on a Monday, I need to get the data for both Saturday and Sunday so would need to be able to pass the date as a parameter rather than having to manually change the query.
How does one do this?
Many thanks, Seamus
|
|
|