Databases Flashcards
What is Structured Data?
Fixed fields with data types and known meanings. has metadata that describes the data. E.G well-defined databases
Structured data is far easier for a computer to interact with and process becuase the data is arranged in a standard, defined layout
What is Unstructured Data?
No discernible structure and no metadata. E.G raw text, as the structure it has may not be explicit
Unstructured data can’t be queried(A request to data) without a transformation
What is a database?
A collection of infomation that us organised so that it can be easily accessed, managed and updated
What is a table?
Two-dimensional repesentation of data that is stored in rows and columns
What is a field?
Single piece of data about an entity
What is a record?
The group of fields about a specific entity(aka a row)
What is a entity?
An object/person/thing about which data is recorded
What is a Key field
In a relational DB, each table should have a primary key which is a field that uniquely identifies each record
Relationships between tables are modelled with shared keys
A field in one table that is a primary in anothertable is called a foreign key
A 1:m relationship is created between a customer and orders