"All we have to decide is what to do with the time that is given to us." -- J. R. R. Tolkien
Wednesday, October 10, 2007
Brain Ache
No, not head ache but brain ache. I started my on my MBA this semester. I attend classes every other Friday and Saturday. That is my excuse for not blogging lately. After 10 hours of Accounting and Finance I literally had a brain ache, it hurt to think.
Friday, August 03, 2007
SQL Round To Quarter
This is a reminder to myself how to round to the nearest fraction, in this case a quarter.
Next time I won't spend 15 minutes trying to recall the rounding formula. I'll just look it up here.
DECLARE @target smallmoney
SET @target = 597.80
--round to quarter hour
SELECT ROUND( @Target/25.0, 2) * 25
-- Result = 597.75
Next time I won't spend 15 minutes trying to recall the rounding formula. I'll just look it up here.
DECLARE @target smallmoney
SET @target = 597.80
--round to quarter hour
SELECT ROUND( @Target/25.0, 2) * 25
-- Result = 597.75
Subscribe to:
Posts (Atom)