a) A software that runs on the Web server
b) A software that runs on the mail server
c) A software that runs on the database server
d) A hardware on which the database resides
In SQL Query Analyzer, which of the following statements would result in contacts,
emails, and zip codes for the clients whose emails either end in “net”, or 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”
Oracle tries to identify errors in which of the following ways?
a) It repeats the command that caused the error.