Relational vs Non-Relational Data Modeling - what's the difference

前端 未结 3 1067
小蘑菇
小蘑菇 2021-02-01 19:36

I\'m new to databases and I\'ve never worked with any RDBMS. However I get the basic idea of relational databases. At least I think I do ;-)

Let\'s say I have a user dat

3条回答
  •  庸人自扰
    2021-02-01 20:35

    Your understanding of the concept of the relational database is flawed. Relational databases organize their data in relations which contain a set of tuples of the same type. To rephrase, data is stored in tables with each row containing the same number of fields with the same types in the same order.

    The example you provided which utilizes a foreign key demonstrates database normalization. This is a concept that can apply to relational as well as other types of databases.

    Sorry, I can't answer your questions about Google's storage system, but hopefully this will clarify your understanding enough to find out.

提交回复
热议问题