Title: Based on the code above, list the name of every student whose postal code is 10113. Post by: MADUBUCA76 on Jan 31, 2018 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' ; Title: Based on the code above, list the name of every student whose postal code is 10113. Post by: cedd123 on Jan 31, 2018 .D
|