Oracle
1Z0-061 · Question #252
The CUSTOMERS table has these columns: A promotional sale is being advertised to the customers in France. Which WHERE clause identifies customers that are located in France?
The correct answer is B. WHERE lower(country_address) = 'france'. WHERE lower(country_address)='france'
Restricting and Sorting Data
Question
The CUSTOMERS table has these columns:
A promotional sale is being advertised to the customers in France. Which WHERE clause identifies customers that are located in France?
Exhibit
Options
- AWHERE lower(country_address) = "france"
- BWHERE lower(country_address) = 'france'
- CWHERE lower(country_address) IS 'france'
- DWHERE lower(country_address) = '%france%'
- EWHERE lower(country_address) LIKE %france%
How the community answered
(44 responses)- A5% (2)
- B82% (36)
- C2% (1)
- D2% (1)
- E9% (4)
Explanation
WHERE lower(country_address)='france'
Topics
#LOWER function#WHERE clause#string comparison#single quotes
Community Discussion
No community discussion yet for this question.
