Database Management System (DBMS) की दुनिया में Relational Model सबसे लोकप्रिय और सबसे ज़्यादा इस्तेमाल किया जाने वाला मॉडल है।
यह मॉडल बताता है कि डेटा को एक डेटाबेस में टेबल के रूप में कैसे स्टोर किया जाता है और उन टेबल्स के बीच संबंध (Relations) कैसे बनाए जाते हैं।
Relational Model की खास बात यह है कि इसमें data को बहुत ही simple, structured और organized way में रखा जाता है, जिससे programming, data processing और data management आसान हो जाता है।
Relational Model क्या है? – Relational Model in Hindi
Relational Model एक ऐसा data model है जिसमें data को Tables (Relations) की form में store किया जाता है।
हर table row और column से मिलकर बना होता है:
- Columns → Attributes को दर्शाते हैं
- Rows → Records (Tuples) को दर्शाते हैं
इस model को सबसे पहले 1969 में एक computer scientist E.F. Codd ने develop किया था, और आज यह modern databases की backbone बन चुका है।

Relational Model क्यों सबसे ज्यादा लोकप्रिय है?
- समझने में आसान
- Structure साफ और simple
- Data redundancy कम होती है
- Data को manage करना आसान
- Security और accuracy high
- बड़े applications के लिए perfect
इसी वजह से MySQL, Oracle, PostgreSQL, SQL Server जैसे लगभग सभी लोकप्रिय databases इसी model पर आधारित हैं।
उदाहरण – Relational Table का Sample
नीचे एक student table का example देखें, जिसमें data rows और columns में store है:
| ID | NAME | AGE | PHONE |
|---|---|---|---|
| 1 | Ravi | 19 | 7503346932 |
| 2 | Pankaj | 18 | 7011485583 |
| 3 | Kamal | 21 | 8475960351 |
| 4 | Himanshu | 17 | 8954714748 |
| 5 | Yogesh | 20 | NULL |
यहाँ, NULL का मतलब है कि data मौजूद नहीं है।
Relational Model के महत्वपूर्ण Concepts
नीचे relational model से जुड़े सबसे महत्वपूर्ण terms को आसान भाषा में समझाया गया है:
1. Attribute (कॉलम)
- टेबल का नाम और उसकी property
- ऊपर दिए example में ID, NAME, AGE, PHONE attributes हैं
2. Tuple (Row / Record)
- टेबल की एक complete entry को tuple कहते हैं
- Example table में कुल 5 tuples हैं
3. Degree
- टेबल में total कितने attributes हैं
- Student table की degree = 4
4. Cardinality
- टेबल में total कितनी rows (tuples) हैं
- Cardinality = 5
5. Column क्या है?
- किसी attribute की सभी values
- Example में ID column की values = 1,2,3,4,5
6. NULL Values
- जब किसी cell में value मौजूद न हो
- Example: Student ID 5 का phone null है
7. Relation Schema
- टेबल का नाम + उसके attributes
Example:
STUDENT (ID, NAME, AGE, PHONE)
यह STUDENT table का schema है।
Relational Model Constraints (जरूरी नियम)
Relational model में कुछ rules होते हैं, जिन्हें integrity constraints कहा जाता है:
1. Key Constraints
- कौन सा attribute uniquely identify करेगा
- Example: Primary Key, Candidate Key
2. Domain Constraints
- किसी attribute में किस type की value allow होगी
- जैसे → AGE हमेशा number होगा
3. Referential Integrity Constraints
- दो tables के बीच relationship को सही रखना
- Example: Foreign Key rule
ये constraints सुनिश्चित करते हैं कि database कभी भी गलत या inconsistent data store न करे।
Relational Model की खास खास विशेषताएँ
- Data table के रूप में organized
- Redundancy कम
- Multiple users एक साथ काम कर सकते हैं
- Error chances बहुत कम
- Query language (SQL) powerful और simple
- सभी modern applications के लिए ideal model
इन्हें भी पढ़े –
- DBMS क्या है DBMS के प्रकार और कार्य की पूरी जानकारी | DBMS In Hindi
- डेटाबेस यूजर्स क्या है?
- डेटा इंडिपेंडेंस क्या है
- DBMS के लाभ
- Characteristics Of DBMS In Hindi
- डेटा मॉडल क्या है?
- डेटाबेस स्कीमा क्या है
- इंस्टैंस क्या है
- डेटाबेस इंटरफ़ेस क्या है
- डेटाबेस लैंग्वेज क्या है
- Classification of DBMS in Hindi
- Entity Set in DBMS
- DBMS Architecture in Hindi
- Types of Data Models in Hindi
- Attributes in DBMS in Hindi
- Entity Set in DBMS (Hindi)
- Entity Types in DBMS (Hindi)
- Types of Attributes in DBMS
- ER Model in DBMS (E-R मॉडल) क्या है?
- Entities के बीच संबंध
- Domain in DBMS
- Tuples in DBMS
- SQL में Joins क्या हैं?
- Primary Key in DBMS
- DBMS Keys in Hindi
- DBMS Data Integrity in Hindi
- Relational Algebra in DBMS
- Normalization in DBMS क्या है?
- BCNF (Boyce-Codd Normal Form) in DBMS
- Functional Dependency in DBMS
- Non-Loss Decomposition in DBMS
- SQL Data Types in Hindi
- Create Table in SQL in Hindi
- SQL DROP TABLE और ALTER TABLE in Hindi
- SQL Indexes in Hindi
- SDLC in Hindi
- DBLC in Hindi
- SQL Views in Hindi
- PL/SQL PROCEDURES in hindi
- Database Normalization in Hindi
- Domain Key Normal Form in Hindi
- SQL Objects in Hindi
- Aggregation, Generalization, Specialization and Association in Hindi
- Data Dictionary क्या है?
- डेटा वेयरहाउसिंग क्या है?
- डाटा माइनिंग क्या है?
- File Organization in Hindi DBMS
निष्कर्ष
Relational Model एक ऐसा data model है जो database की दुनिया में सबसे ज्यादा उपयोग किया जाता है।
यह model data को table format में store करता है, जिससे data access, manage और update करना आसान हो जाता है।
इसकी simplicity और accuracy इसे आधुनिक computing systems का सबसे मजबूत आधार बनाती है।