What is the difference between DBMS and RDBMS?

前端 未结 9 2041
攒了一身酷
攒了一身酷 2020-12-04 09:52

After reading some answers on different websites I am confused now. So, it would be helpful to mention the key difference between DBMS and RDBMS and any relation between the

9条回答
  •  無奈伤痛
    2020-12-04 10:20

    A DBMS is used for storage of data in files. In DBMS relationships can be established between two files. Data is stored in flat files with metadata whereas RDBMS stores the data in tabular form with additional condition of data that enforces relationships among the tables. Unlike RDBMS, DBMS does not support client server architecture. RDBMS imposes integrity constraints and also follows normalization which is not supported in DBMS.

提交回复
热议问题