Hello, I am trying to average and format. I started with this:
select avg(review_service_score) from mwo.dbo.mwo and the result is 8
Then I tried this:
select cast(avg(review_service_score)as decimal(18,2)) from mwo.dbo.mwo and the result is 8.00
The correct format and answer I am looking for is: 8.97
Thank you for any and all help, I am very close, I think...
select avg(review_service_score) from mwo.dbo.mwo and the result is 8
Then I tried this:
select cast(avg(review_service_score)as decimal(18,2)) from mwo.dbo.mwo and the result is 8.00
The correct format and answer I am looking for is: 8.97
Thank you for any and all help, I am very close, I think...