Which of the follwoing is VALID statement for defining computed column in CREATE TABLE ?

 Posted by Bandi on 6/30/2015 | Category: Sql Server Interview questions | Views: 1777 | Points: 40
Select from following answers:
  1. [FullName] AS LEFT([FirstName], 1) + [LastName]
  2. LEFT([FirstName], 1) + [LastName] AS [FullName]
  3. [FullName] = LEFT([FirstName], 1) + [LastName]
  4. SET [FullName] AS LEFT([FirstName], 1) + [LastName]
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response