What will be the output of the following SQL statement?
SELECT * FROM person
WHERE person_id=1;
SELECT * FROM person
WHERE person_id=1;A. Show all columns but only those rows which belongs to person_id=1
B. Show all columns and rows
C. Shows only columns person_id
D. None of the mentioned
Answer: Option A

Join The Discussion