InterviewSolution
Saved Bookmarks
| 1. |
What does a fully qualified table name consist of?(a) only the table name(b) only the database name(c) table name followed by database name(d) database name followed by table name |
|
Answer» Correct answer is (d) database name followed by table name Easy explanation: MySQL identifiers use qualifiers. An element of a database has a fully qualified name. A database table in MySQL has the fully qualified name as the database name followed by the table name. |
|