ExamQuestions.com

Register
Login
Oracle Datbase 12c SQL Exam Questions

Oracle

Oracle Datbase 12c SQL

8 / 120

Question 8:

Examine the structure of the MEMBERS table: 
image
You want to display details of all members who reside in states starting with the letter A followed by exactly one character. Which SQL statement must you execute? 

Answer options:

A. SELECT * FROM MEMBERS WHERE state LIKE `%A_`;
B. SELECT * FROM MEMBERS WHERE state LIKE `A_`;
C. SELECT * FROM MEMBERS WHERE state LIKE `A_%`;
D. SELECT * FROM MEMBERS WHERE state LIKE `A%`;