Solved

Based on the Table Below, the Query That Finds All

Question 25

Multiple Choice

Based on the table below, the query that finds all customers who do not live in Pleasantville is _________________.
Customer table
Based on the table below, the query that finds all customers who do not live in Pleasantville is _________________. Customer table     A) SELECT * FROM Customer WHERE City NOT 'Pleasantville' B) SELECT * FROM Customer WHERE NOT (City = 'Pleasantville')  C) SELECT * FROM Customer WHERE City <> 'Pleasantville' D) SELECT * FROM Customer WHERE City != 'Pleasantville'


A) SELECT * FROM Customer WHERE City NOT 'Pleasantville'
B) SELECT * FROM Customer WHERE NOT (City = 'Pleasantville')
C) SELECT * FROM Customer WHERE City <> 'Pleasantville'
D) SELECT * FROM Customer WHERE City != 'Pleasantville'

Correct Answer:

verifed

Verified

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

Related Questions