wysiwygger
Programmer
Hi,
I'm having some trouble with my SQL statement.
What I'm doing is: Retrieving the invoice details from my SQL Server 2005. In the example below it's looking for the job number "P-05-012-01" and some exchange rates out of a range of dates.
With the case statement I calculate my average exchange rate from the exchange rates in my range of dates.
Now....this is all working well.
PROBLEM is if there is no date for an exchange rate, e.g. if the invoice is in the June, e.g.
himsys.dbo.cscrd.ratedate BETWEEN '2007-06-01' AND '2007-06-31'
There is no exchange rate for June yet!
Is there a way I can have the exchange rate calculated as it is now but if there is no exchange rate because the date is in the future it just gives me the exchange rate as '1'
The way it is now the SQL-statement will just ignore every invoice which has no exchange rate and shows me nothing.
I hope this can be done without stored procedures because I'm not that advanced yet.
SELECT himdat.dbo.ebbudd.budamt3 AS invoice,
himdat.dbo.ebbudd.optional4 AS invoicenumber,
exchangerate = CASE himdat.dbo.ebbudd.optional2 WHEN 'AUD'
THEN '1' ELSE SUM(himsys.dbo.cscrd.rate) / COUNT(himsys.dbo.cscrd.rate) END
FROM himdat.dbo.ebbudd, himsys.dbo.cscrd
WHERE himdat.dbo.ebbudd.field1 = 'P-05-012-01' AND
himsys.dbo.cscrd.ratedate BETWEEN '2007-05-10' AND '2007-05-20'
Cheers,
Andreas
I'm having some trouble with my SQL statement.
What I'm doing is: Retrieving the invoice details from my SQL Server 2005. In the example below it's looking for the job number "P-05-012-01" and some exchange rates out of a range of dates.
With the case statement I calculate my average exchange rate from the exchange rates in my range of dates.
Now....this is all working well.
PROBLEM is if there is no date for an exchange rate, e.g. if the invoice is in the June, e.g.
himsys.dbo.cscrd.ratedate BETWEEN '2007-06-01' AND '2007-06-31'
There is no exchange rate for June yet!
Is there a way I can have the exchange rate calculated as it is now but if there is no exchange rate because the date is in the future it just gives me the exchange rate as '1'
The way it is now the SQL-statement will just ignore every invoice which has no exchange rate and shows me nothing.
I hope this can be done without stored procedures because I'm not that advanced yet.
SELECT himdat.dbo.ebbudd.budamt3 AS invoice,
himdat.dbo.ebbudd.optional4 AS invoicenumber,
exchangerate = CASE himdat.dbo.ebbudd.optional2 WHEN 'AUD'
THEN '1' ELSE SUM(himsys.dbo.cscrd.rate) / COUNT(himsys.dbo.cscrd.rate) END
FROM himdat.dbo.ebbudd, himsys.dbo.cscrd
WHERE himdat.dbo.ebbudd.field1 = 'P-05-012-01' AND
himsys.dbo.cscrd.ratedate BETWEEN '2007-05-10' AND '2007-05-20'
Cheers,
Andreas