Q. Which of the following MySQL statements is valid if '`sampledb`' is a database and '`tbl`' is a table in it?
β
Correct Answer: (B)
SELECT * FROM `sampledb`.`member`
Explanation: This question is about how to correctly reference a table within a database in MySQL. Imagine you have a bookshelf (`sampledb`) and a book (`tbl`) on it. We need to tell MySQL where to find that book.