August 4, 2011 at 12:12 pm
Hi,
I am trying to use round here.
Below script output is 13.77777. but I need 13.7
Can you help me to ROUND
Select
avg(isnull(TotalMessages,0)) as TotalAvgMessagesPerPatient
from #temp_patients
TotalMessages DECIMAL (datatype)
August 4, 2011 at 12:27 pm
Look up ROUND in bol.
_______________________________________________________________
Need help? Help us help you.
Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.
Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/
August 4, 2011 at 12:27 pm
Maybe this can help you:
select floor(13.77777*10)/10
______________________________________________________________________________
How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.
August 4, 2011 at 12:39 pm
Use ROUND.
select ROUND(13.7777, 1, 1);
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply