What is “data”?
Information that can be stored, processed, and analyzed by computers.
What are common types of data?
Text, numbers, images, audio, video, and sensor readings.
What does a database do?
It stores data in an organized way so it can be easily searched, updated, and managed.
What’s the difference between data and a database?
Data is the raw information; a database is the system that organizes and manages it.
What are tables in a database?
Structured collections of data arranged in rows and columns.
What are rows in a database table?
Individual records — each row represents one entry (like one user or one product).
What are columns in a database table?
Attributes or fields — each column stores one type of data (like “Name,” “Email,” or “Price”).
What’s a record in database terms?
A single complete set of information stored in one row of a table.
What does “relational database” mean?
A database that organizes data into related tables that can connect through shared information.
What’s an example of a relational database?
MySQL, PostgreSQL, SQLite, or Microsoft SQL Server.
What is SQL short for?
Structured Query Language.
What is SQL used for?
Communicating with a database to create, read, update, or delete data.
What does “query” mean in databases?
A request to retrieve or manipulate data stored in the database.
What does CRUD stand for?
Create, Read, Update, Delete — the four main operations you can perform on data.
What is a primary key?
A unique identifier for each record in a table.
What is a foreign key?
A field in one table that links to the primary key in another, connecting related data.
What is a “relationship” between tables?
A link showing how data in one table relates to data in another (like “Customers” and “Orders”).
What’s the difference between a database and a spreadsheet?
A spreadsheet is simpler and manual; a database is designed for larger, structured, and automated data management.
What’s a “database management system” (DBMS)?
Software that helps create, maintain, and interact with databases.
Give an example of how databases are used daily.
Saving your login info, tracking your online purchases, or storing messages in an app.
What’s a NoSQL database?
A non-relational database that stores data in flexible formats like documents or key-value pairs.
When are NoSQL databases used?
When data is unstructured or constantly changing (like social media feeds or user activity logs).
What’s the key difference between SQL and NoSQL?
SQL databases use structured tables; NoSQL databases use flexible, non-tabular structures.