Select from following answers:- [FullName] AS LEFT([FirstName], 1) + [LastName]

- LEFT([FirstName], 1) + [LastName] AS [FullName]
- [FullName] = LEFT([FirstName], 1) + [LastName]
- SET [FullName] AS LEFT([FirstName], 1) + [LastName]
- All Above
The syntax of defining a computed column in a CREATE TABLE statement is as follows:
<column_name> AS <computed_column_expression>
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator