Solved

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

Question 49

Multiple Choice

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


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

Correct Answer:

verifed

Verified

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

Related Questions