Fundamentals of Database Systems: Basic SQL

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/20

flashcard set

Earn XP

Description and Tags

Flashcards covering key vocabulary and concepts from Chapter 6 of the Fundamentals of Database Systems, focusing on Basic SQL.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

SQL

Structured Query Language, used for managing relational databases.

2
New cards

CREATE statement

Main SQL command for data definition.

3
New cards

Data Manipulation

Refers to operations that allow users to retrieve, insert, update, and delete data in a database.

4
New cards

Primary Key

A unique identifier for a record in a table that cannot be duplicated or null.

5
New cards

Foreign Key

A field in one table that uniquely identifies a row of another table, establishing a relationship between the two tables.

6
New cards

Integrity Constraints

Rules that ensure the accuracy and consistency of data within the database.

7
New cards

SELECT statement

SQL command used to retrieve data from one or more tables.

8
New cards

WHERE clause

A condition that must be met for records to be included in the result set of a query.

9
New cards

ORDER BY clause

Specifies the order of the results returned by a SELECT statement.

10
New cards

INSERT command

SQL command used to add new records to a table.

11
New cards

UPDATE command

SQL command used to modify existing records in a table.

12
New cards

DELETE command

SQL command used to remove records from a table.

13
New cards

Schema

A logical structure that defines the organization of data in a database.

14
New cards

Tuple

A single row in a table, representing a single record.

15
New cards

View

A virtual table based on the result set of a SELECT query that does not store data physically.

16
New cards

Data Type

Specifies the kind of data that can be stored in a database column such as INTEGER, VARCHAR, etc.

17
New cards

DISTINCT keyword

Used in SQL to return only distinct (different) values.

18
New cards

LIKE operator

Used to search for a specified pattern in a column.

19
New cards

BETWEEN operator

Used to filter the result set within a certain range.

20
New cards

Arithmetic Operators

Operators used in SQL for performing mathematical calculations, such as addition (+), subtraction (-), multiplication (*), and division (/).

21
New cards

Transaction Control

Commands that ensure database transactions are processed reliably.