Databases Flashcards
What is a database?
A database is an organized collection of data.
What is SQL?
SQL stands for Structured Query Language, which is used for managing and manipulating relational databases.
What is a primary key?
A primary key is a unique identifier for each record in a database table.
What is normalization in databases?
Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.
What is a foreign key?
A foreign key is a field in a database table that links to the primary key in another table.
What is a relational database?
A relational database is a type of database that stores data in tables and establishes relationships between them.
What is ACID in database transactions?
ACID stands for Atomicity, Consistency, Isolation, and Durability, which are properties that guarantee database transactions are processed reliably.
What is a database index?
A database index is a data structure that improves the speed of data retrieval operations on a database table.
What is a composite key?
A composite key is a combination of two or more columns that uniquely identifies a record in a database table.