InterviewSolution
Saved Bookmarks
| 1. |
What is data in a MySQL database organized into?(a) Objects(b) Tables(c) Networks(d) File systemsThe question was asked in unit test.This key question is from Basic Database Terminology topic in portion General MySQL Use of MySQL |
|
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. |
|