Why is it important to understand how data is organized?
Understanding data structure helps you find, connect, and analyze information efficiently.
What is relational thinking in data analysis?
It’s the idea that data is stored in related tables and can be connected using shared fields (keys).
What is a table in data terms?
A collection of data organized into rows and columns, where each row is a record and each column is a field.
A single row in a table is called a ______.
Record
A single column in a table is called a ______.
Field
Which of these is an example of a key that connects tables?
A) Customer ID
B) Product description
C) Sales amount
D) Date of purchase
A) Customer ID
Why might tables be related to each other in a database?
A) To store duplicate data
B) To link information logically for analysis
C) To make spreadsheets bigger
D) To confuse analysts
B) To link information logically for analysis
What is a primary key?
A field in a table that uniquely identifies each record.
What is a foreign key?
A field in one table that refers to the primary key of another table, creating a relationship between tables.
Organizing data into separate but related tables is called ______.
Relational database design
Give an example of relational thinking in everyday data.
Examples: linking customer info with orders, student info with course enrollments, employees with departments.
Why is relational thinking important for analysis?
It allows you to combine different datasets logically, avoid duplication, and extract meaningful insights.