What will be output of below SQL Query ?
SELECT (FirstName +' ' + LastName) as FullName
FROM Employee
WHERE EmployeeID = 1;
Answer : Error
Reason of error:
- When using aliase, it must be a single world.
- Alliase will not accept space
This blog contain tech artical, interview preparation for .net, Angular, SQL, UML Diagram