InterviewSolution
Saved Bookmarks
| 1. |
What is data in a MySQL database organized into?(a) Objects(b) Tables(c) Networks(d) File systems |
|
Answer» Right answer is (b) Tables Easy explanation: Since MySQL is an RDBMS, it’s data is organised in tables for establishing relationships. A table is a collection of rows and columns, where each row is a record and columns describe the feature of records. |
|