Solved

Based on the Code Above,list the Name of Every Student

Question 59

Multiple Choice

Based on the code above,list the name of every student whose postal code is 10113.​


A) ​SELECT FirstName, LastName WHERE PostalCode='10113' ;
B) ​SELECT FirstName, LastName FROM Student WHERE PostalCode='10113' ;
C) ​SELECT FirstName, LastName FROM Student WHERE PostalCode='10113'
D) ​SELECT * FROM Student WHERE PostalCode='10113' ;

Correct Answer:

verifed

Verified

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

Related Questions