Exam 2 Flashcards
Chapters 5-8
Database
a collection of related data for various uses
Hierarchical Data Model
organizes data into a tree-like structure that allows repeating
Network Data Mode
flexible model representing objects and their relationships (looks like a net)
Relational Data Model
data model that stores information in the form of related two-dimensional tables
DBMS
(1) A computer program that creates, modifies and queries the database.
(2) Designed to manage a database’s storage and retrieval of information
Data Dictionary
Describes the data fields in each database record such as field description, field length, field type
Database Administrator
The person responsible for the design, implementation, repair and security of a firm’s database
Primary Key
uniquely identifies a specific row in a table
Foreign Key
attribute in one table that acts as primary key in another table; provides a link
Tables
store data which consists of a series of rows (records) and columns (attributes) connected by relationships (links between tables by foreign keys)
Queries
retrieve and display data derived from records stored within the database
Forms
enter data into tables and view existing records, powered by queries
Reports
integrate data from one or more queries and tables, cannot edit database info
Pages
web-based forms, data can be entered in real time from outside of the database system
Macros
automate processes like opening a specific form
Modules
alter Access’s code
Structured Query Language (SQL)
A computer language designed to query data in a relational database
INSERT operator
create a new record (row)
SELECT operator
begin a query; tells the query which columns of a table should be included in the query
UPDATE operator
update record
DELETE operator
delete existing record
FROM clause
added to the SELECT statement; indicates the name of table(s) from which to retrieve data
WHERE clause
states the criteria that must be met to be shown in the query result
GROUP BY operator
is used with aggregate functions on the query results based on one or more columns
ORDER BY clause
identifies which columns are used to sort the resulting data