Computer Science

Write some characteristics of RDBMS.

SQL Queries

1 Like

Answer

The characteristics of Relational Database Management System (RDBMS) are as follows:

  1. Structured Data Storage — RDBMS organizes data into structured tables consisting of rows and columns.
  2. Data Integrity — RDBMS enforces data integrity through constraints such as primary keys, foreign keys, unique constraints, and check constraints.
  3. Relationships — RDBMS supports relationships between tables.
  4. SQL Support — RDBMS uses SQL (Structured Query Language) as the standard language for querying and manipulating data.

Answered By

3 Likes


Related Questions