-
Which of the following statements is valid if ‘`sampledb`’ is a database and ‘`tbl`’ is a table in it?
-
- SELECT * FROM `member`.`sampledb`
- SELECT * FROM `sampledb.member`
- SELECT * FROM `member.sampledb`
- SELECT * FROM `sampledb`.`member`
- None of these
Correct Option: D
When quotes is being used to refer to a qualified name, the individual identifiers are quoted within the name separately. So, the database name `sampledb` and table name `tbl` are quoted separately.