Solved

Based on the Table Description and SQL Shown, Which Query

Question 15

Multiple Choice

Based on the table description and SQL shown, which query lists the first name and last name of all students, separated by a space? ​
Students (StudentID, FirstName, LastName, Street, City, State, PostalCode)


A) SELECT FirstName & LastName AS FullName FROM Students;
B) SELECT FirstName & ' ' & LastName AS FullName FROM Students;;
C) SELECT FirstName ' ' LastName AS FullName FROM Students;
D) SELECT FirstName, LastName AS FullName FROM Students;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions