Data for Decision Making Quiz 1 Part 1 (copy)

0.0(0)
Studied by 4 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:40 PM on 9/21/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

Database

Stores, organizes, and manages large amounts of information in a single software application.

2
New cards

SQL

A programming language used by nearly all relational databases to query, manipulate, and define data, and to provide access control.

3
New cards

Store data; provide an organizational structure for data; and to provide a mechanism for querying, creating, modifying, and deleting data.

What is the purpose of a database?

4
New cards

Specific details about each type of object.

What can be stored in a regular database?

5
New cards

Relational databases

Store information in related two-dimensional tables.

6
New cards

Through data models

How is the design of a database communicated?

7
New cards

Data Model

Graphical, logical structures that detail the relationships among data fields.

8
New cards

Tables, Data Fields/Attributes, Primary and Foreign Keys, and Relationships

What’s included in a data model?

9
New cards

Always start talking about one thing.

How to read/understand data models?

10
New cards

Entity

An object. Examples: Customer, Product, and Building.

11
New cards

Data Model and Data Table View

What are the two views of a database table?

12
New cards

Data Field/Attribute

The smallest or most basic unit of information that is stored about an object. Characteristic of an entity.

13
New cards

Contains data about a specific entity. Goes across.

What is a record?

14
New cards

Primary Key

A data field that uniquely identifies each row in a table. The values in this column can never repeat or be duplicated.

15
New cards

Foreign Key

A primary key of one table that appears as an attribute in another table and acts to provide a logical relationship between the two tables. Ex: customer_id in the order table is a foreign key.

16
New cards

Parent table

The table that houses the primary key. It has two perpendicular lines coming from it. The perpendicular lines represent One in the One-to-Many relationship.

17
New cards

Child table

The other table that is not the parent table is this table. It has the crow’s foot connected to it and represents the Many in the One-to-Many relationship.

18
New cards

Crow’s foot- Perpendicular lines connect to the primary key in one table, “one”. The circle represents the many side and connects to the foreign key in another table.

What is represented by this?

<p>What is represented by this?</p>
19
New cards

Referential Integrity

A foreign key must reference a primary key in the parent table.

20
New cards

Update problems (with lists)

When a single piece of data requires changes in multiple rows.

21
New cards

Deletion problems (with lists)

Deleting a record unintentionally removes other important data

22
New cards

Insertion problems (with lists)

It is impossible to add new data to a table

23
New cards

Increased flexibility, increased scalability and performance, reduced information redundance, increased information integrity (quality), increase information security.

Advantages of using a database

24
New cards

DBMS

Serves an interface between the database and its end users or programs, allowing users to retrieve, update, and manage how the information is organized and optimized. Ex: MySQL, Microsoft Access, Microsoft SQL, Oracle.

25
New cards

Insertion, Deletion, Update Problems + getting information out of spreadsheets is difficult.

Cons of spreadsheets