ROUND(123.89, -1) rounds to the nearest tens place because the second parameter is -1. 123.89 rounded to the nearest ten is 120, and the default precision for DECIMAL results in SQL Server is two decimal places, giving 120.00. A positive parameter would round to decimal places.