Question: Suppose you have the following SELECT statement: SELECT * FROM employees; You want to add a WHERE clause to it that will limit the result

Suppose you have the following SELECT statement:
SELECT *
FROM employees;
You want to add a WHERE clause to it that will limit the result set to people whose first names begin with the letter J.
Which of these is correct?
A.)
WHERE first_name LIKE 'J%'
B.)
WHERE first_name LIKE 'J_'
C.)
WHERE 'first_name' LIKE J%
D.)
WHERE first_name LIKE 'J*'

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!