add data note to check footnotes

This commit is contained in:
semanticdata 2024-03-06 13:36:01 -06:00
parent a97c06b7f2
commit a65d6bde0b

18
content/Data.md Normal file
View File

@ -0,0 +1,18 @@
---
title: Data Models
---
# Data Models
## Semantic
Semantic data is data that has been structured to add meaning to the data. This is done by creating data relationships between the data entities to give truth to the data and the needed importance for data consumption. Semantic data helps with the maintenance of the data consistency relationship between the data.
## Relational
Relational data uses a structure and language consistent with first-order predicate logic[^1], where all data is represented in terms of tuples,[^2] grouped into relations.
The purpose of the relational model is to provide a declarative method for specifying data and queries: users directly state what information the database contains and what information they want from it, and let the database management system software take care of describing data structures for storing the data and retrieval procedures for answering queries.
[^1]: First-order logic—also known as first-order predicate calculus—is a collection of formal systems used in mathematics, philosophy, linguistics, and computer science.
[^2]: In mathematics, a tuple is a finite sequence or ordered list of numbers or, more generally, mathematical objects, which are called the elements of the tuple.