Q. Which statement 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 asking about the correct way to reference a table within a database in MySQL.