Programming Languages C++ Objective
Mar 13, 2013

How do you select all the records from a table named "EMP" where the value of the column "Last_Name" is "KING"?

Choose the correct answer:
A) SELECT [all] FROM EMP WHERE Last_Name ='KING'
B) SELECT * FROM EMP WHERE Last_Name ='KING'
C) SELECT * FROM EMP WHERE Last_Name LIKE 'KING'
D) SELECT [all] FROM EMP WHERE Last_Name LIKE 'KING'
Detailed Explanation

Option C is the right answer.

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback