-
Which statement is valid if ‘`sampledb`’ is a database and ‘`tbl`’ is a table in it?
-
- SELECT * FROM `member.sampledb`
- SELECT * FROM `sampledb.member`
- SELECT * FROM `sampledb`.`member`
- SELECT * FROM `member`.`sampledb`
- None of these
Correct Option: C
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.