nerdexam
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

1Z0-061 question #252 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)
  • A
    5% (2)
  • B
    82% (36)
  • C
    2% (1)
  • D
    2% (1)
  • E
    9% (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.

Full 1Z0-061 Practice