Consider the below query

SELECT CAST(ROUND(InputNumber, N, 1) AS DECIMAL(18, N))
Where N=1,2,3,4,5,....

What will be the output of the query if InputNumber=876543.123456 and N=4

 Posted by Rajnilari2015 on 1/24/2016 | Category: Sql Server Interview questions | Views: 1355 | Points: 40
Select from following answers:
  1. 876543.1234
  2. 876543.1233
  3. 876544.1234
  4. 876543.12345
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response