Q:

Write a query to combine FirstName and LastName and display it as “Full Name”.

0

Write a query to combine FirstName and LastName and display it as “Full Name”.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Select FirstName +' '+ LastName As "Full Name" from tblstudent 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Top 100 SQL server queries Interview questions

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Get all student details from tblstudent whose “F... >>
<< Get unique branch from tblstudent table....