Question

In SQL Query Analyzer, which of the following statements would result in contacts, emails, and zip codes for the clients whose emails end in "net", and who live in 03264 zip code?
a) Select contact, email, zipcode From client Where email Not Like "net" And zipcode!= "03264"
b) Select contact, email, zipcode From client Where email Like "*net" Or zipcode = "03264"
c) Select contact, email, zipcode From client Where email Like "net" Or zipcode = "03264"
d) Select contact, email, zipcode From client Where email Like "*net" And zipcode = "03264"

Answer

This answer is hidden. It contains 1 characters.