What will be the output of the below query?
select ISNUMERIC('1234') as [1234],ISNUMERIC(1234) as [1234],ISNUMERIC('1234sddd') as [1234];

 Posted by vishalneeraj-24503 on 11/26/2013 | Category: Sql Server Interview questions | Views: 5988 | Points: 40
Select from following answers:
  1. 1,1,0
  2. 0,0,0
  3. -1,-1,-1
  4. true,false,true
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response