Question:

Which of the following is a primary characteristic of a Relational Database?

Show Hint

Remember:
• Relational Database = Tables + Rows + Columns.
• Uses SQL for data management.
• Examples: MySQL, Oracle, PostgreSQL, SQL Server.
Updated On: Jul 15, 2026
  • Data is stored in collections of documents.
  • Data is organised into tables with rows and columns.
  • Designed for unstructured data.
  • No schema required.
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

Concept: A Relational Database Management System (RDBMS) stores data in the form of tables. Each table consists of rows (records) and columns (fields). Relationships between different tables are established using Primary Keys and Foreign Keys. Some popular relational databases are:
• MySQL
• Oracle Database
• PostgreSQL
• Microsoft SQL Server

Step 1:
Understand how data is stored in an RDBMS.
In a relational database: \[ \boxed{\text{Data is stored in tables consisting of rows and columns.}} \] Each row represents one record, while each column represents a particular attribute of that record.

Step 2:
Identify the key features of a relational database.
A relational database provides:
• Structured data storage.
• Fixed schema.
• Relationships between tables using keys.
• SQL (Structured Query Language) for managing data.

Step 3:
Analyse the given options.

• Data stored in collections of documents -- Feature of NoSQL document databases.
• Data organised into tables with rows and columns -- Correct.
• Designed for unstructured data -- Characteristic of NoSQL databases.
• No schema required -- Incorrect for relational databases, as they require a predefined schema.

Step 4:
Final conclusion.
Hence, the primary characteristic of a relational database is: \[ \boxed{\text{Data is organised into tables with rows and columns.}} \]
Was this answer helpful?
0
0