What will be the output of below query?

select try_parse('111' as int) as 'Number1',try_parse('222.000' as int) as 'Number2',try_parse(.abcD1234E.000' as int) as 'Number3';

 Posted by vishalneeraj-24503 on 11/28/2013 | Category: Sql Server Interview questions | Views: 4319 | Points: 40
Select from following answers:
  1. 1,1,0
  2. 111,222,null
  3. True,False,True
  4. 111,222,abcd1234e
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response