Hi,
I have a query ...
select c.month
from summary c, summary v
where c.location = 'Carlisle' and v.location = 'Newcastle'
and c.minTemp > v.minTemp and c.maxTemp > v.maxTemp ;
Which finds the months where the max and min temp were higher than carlisle
However when it is executed the returned results are incorrect. It works fine when the min and max temp are ints, however once i make them decimal(3,2) format the query messes up...
Any ideas how I can sort this out ?
Thanks Chris