Which of the following will select the Id and Status fields for records whose Status field contains

Question:

Which of the following will select the Id and Status fields for records whose Status field contains only the letter F?
a. SELECT Id, Status FROM Employ WHERE Status = 'F'
b. SELECT Id, Status FROM Employ ORDER BY Status = 'F'
c. SELECT Id, Status FROM Employ FOR Status = 'F'
d. SELECT Id, Status FROM Employ SELECT Status = 'F'

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: