Database Vocab Flashcards
(42 cards)
Define: Database
An organized or structured collection of data, typically stored in electronic format
Define: CRUD
An acronym that stands for Create, Read, Update, and Delete. These are features of any database.
Define: Relational Database Management System
Software that manages data in an organized or structured way.
Define: Table
A two-dimensional collection of data.
Define: Relational Database
A database in which all data is stored in related tables with rows and columns
Define: Relationship
A natural association between or two or more entities.
Define: Column
A set of data values(or attributes)all of a single type.
Define: Row
Holds the fields or attributes for a specific entity. Also called a record or a tuple.
Define: Attribute
a property or description of an entity.
Define: Domain
a set of possible values for an attribute.
Define: Field
the smallest units of information you can access in a database
Define: Record
a group(row) of fields within a table that are relevant to a specific entity
Define: Entity
An object in the real world that is distinguishable from other objects and has unique characteristics or attributes.
Define: Entity Set
A collection of entities having the same characteristics or attributes
Define: Instance
A single entity of an entity set
Define: ERD
Acronym for Entity Relationship Diagram. An ERD is a diagram (or model) of a database that shows all tables and relationships between tables
Define: Relationship
A natural association between entities (objects)
Define: One-to-one Relationship
An instance of entity A is related to only one instance of entity B
Define: One-to-many Relationship
An instance of entity A is related to more than one instance of entity B
Define: Many-to-many relationship
More than one instance of entity A is related to more than one instance of entity B
Define: Primary Key
An attribute (column)or combination of attributes which can be used to uniquely identify one row from any other row in the table.
Define: Simple key
A primary key, like Part Number, which contains only one attribute (column)
Define: Composite key
A primary key which is made from the combination of more than one attribute (column)
Define: Foreign key
A column or combination of columns that is used to establish and enforce a link between the data in two tables.