Class 6: Master the Data, Preparing the Data

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

What is a Database?

Structured dataset that can be accessed by many potential authorized users via a computer system or network

2
New cards
3
New cards

How do relational databases break the data into separate tables?

With unique lists

4
New cards

What are the parts of a relational databse?

Tables:

  • Fields (variables)

    • Primary Key (unique identifier, all tables must have this)

    • Foreign Key (create a relationship between two tables)

  • Records (rows)

5
New cards

What is an Entity Relationship Diagram?

Helps you become familiar with what data is in the database and how to query it

6
New cards

What are the Advantages of Storing Data in Relational Databases?

  • Data Integrity

    • Fields can have data requirements

    • Complete

    • Neutral

  • Internal Control Benefits

    • Internal Controls

    • Data entry and table access can be controlled

    • Reduce redundancy and errors

    • Version control

7
New cards

What are common issues with data?

  • Missing data

  • Duplicate rows

  • Blank rows/columns

  • Numbers formatted as text

8
New cards

What is SQL?

A programming language used for managing and querying relational databases, allowing users to retrieve, update, and manipulate data

9
New cards

What can you do with SQL?

  • Execute queries

  • Retrieve data

  • Insert records

  • Update records

  • Delete records

  • Create new databases

  • Create new tables

  • Create stored procedures

  • Create views

  • Set permissions on tables, procedures, and views

10
New cards

What is does it mean to Merge data sets?

Combine data from different sources into a single dataset to use for analysis

11
New cards

What is a Left Join?

Start with the first dataset, and add only the column that match the rows in the first dataset

12
New cards

What is a Right Join?

Start with the second dataset, and add only columns that match the rows in the second dataset

13
New cards

What is Inner Join?

Keep only the rows that match in BOTH datasets

14
New cards

What is Outer Join?

Maximum information keep all info