Quiz 2 - Study Guide Flashcards

Terminology over chapters 3 & 4 to help you prepare for quiz 2 of COP 4555 - Database Management.

1
Q

CREATE TABLE

A

A command to define a new table (relation) by specifying its columns, data types, and integrity constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

INSERT

A

A SQL statement to add new rows to a table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

DELETE

A

A SQL statement to remove rows from a table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

DROP TABLE

A

A command that removes an entire table and its data from the database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

ALTER TABLE

A

A command to modify an existing table’s structure (e.g., adding or dropping columns).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

DDL (Data Definition Language)

A

The subset of SQL used to create, alter, and drop database objects (e.g., tables), and specify integrity constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

DML (Data Manipulation Language)

A

The subset of SQL used to query and modify data (SELECT, INSERT, UPDATE, DELETE).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Transaction Control

A

SQL statements (e.g., BEGIN, COMMIT, ROLLBACK) that manage transactions, ensuring data integrity across multiple operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Embedded SQL / Dynamic SQL

A

Mechanisms for placing SQL commands within a general-purpose programming language to execute queries and updates.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Authorization

A

Commands and mechanisms in SQL to grant or revoke user privileges on database objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Schema

A

The overall logical structure of a database, describing relations (tables), attributes (columns), and constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Integrity Constraints

A

Rules that maintain data accuracy and consistency (e.g., PRIMARY KEY, FOREIGN KEY, NOT NULL).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Primary Key

A

A column (or set of columns) that uniquely identifies each row in a table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Foreign Key

A

A column (or set of columns) in one table that references the primary key of another table, creating a relationship.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

NOT NULL

A

A constraint disallowing NULL values in a column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

char(n)

A

A fixed-length character data type of length n.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

varchar(n)

A

A variable-length character data type with a maximum length of n.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

int / smallint

A

Integer data types, with ranges dependent on the machine. smallint is typically a smaller range than int.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

numeric(p,d)

A

A fixed-point number with p total digits, d of which appear after the decimal point.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

float(n)

A

A floating-point data type with at least n digits of precision.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Basic Query Structure (SELECT-FROM-WHERE)

A

The core SQL query format specifying desired columns (SELECT), source tables (FROM), and row conditions (WHERE).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

SELECT *

A

A shorthand to select all columns from the specified table(s).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

DISTINCT

A

A keyword that removes duplicate rows in the query result.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Logical Connectives (AND, OR, NOT)

A

Used in the WHERE clause to combine or negate conditions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

Cartesian Product

A

The result of listing every row of one table with every row of another, typically constrained by a matching condition.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

Table Alias (AS)

A

A way to rename a table (or column) temporarily within a query for convenience (e.g., instructor AS T).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Self Join

A

A join in which a table is joined to itself using different aliases.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

LIKE

A

A pattern-matching operator, often used with wildcards (%) and (_) to filter rows based on partial string matches.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

ORDER BY

A

A clause used to sort query results by specified columns in ascending (ASC) or descending (DESC) order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

BETWEEN

A

An operator used in the WHERE clause to filter rows within an inclusive numeric or date range.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

Set Operations (UNION, INTERSECT, EXCEPT)

A

Commands that combine the results of multiple subqueries: UNION merges two sets (removing duplicates by default), INTERSECT returns rows common to both sets, EXCEPT returns rows in one set but not in the other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

union all / intersect all / except all

A

Variants of set operations that preserve duplicate rows.

33
Q

NULL

A

A marker that indicates missing or unknown data.

34
Q

IS NULL / IS NOT NULL

A

Predicates that check whether a value is NULL or not NULL, respectively.

35
Q

Three-Valued Logic

A

Logical evaluation in SQL that can yield TRUE, FALSE, or UNKNOWN (due to NULL).

36
Q

Aggregate Functions (AVG, MIN, MAX, SUM, COUNT)

A

Functions that operate on a column’s collection of values to produce a single summarized result.

37
Q

GROUP BY

A

A clause that groups rows that share the same values in specified columns, often used with aggregates.

38
Q

HAVING

A

A clause (used with GROUP BY) that filters groups based on an aggregate condition.

39
Q

Nested Subquery

A

A SELECT-FROM-WHERE statement placed inside another query (e.g., in the WHERE or FROM clause).

40
Q

IN

A

Tests whether a value matches any value in a given list or the result of a subquery.

41
Q

SOME

A

Compares a value to each value in a subquery and returns TRUE if the comparison is TRUE for at least one.

42
Q

ALL

A

Compares a value to each value in a subquery and returns TRUE if the comparison is TRUE for every value.

43
Q

EXISTS / NOT EXISTS

A

EXISTS returns TRUE if a subquery returns any rows; NOT EXISTS returns TRUE if a subquery returns none.

44
Q

CASE Statement

A

A conditional expression providing IF-THEN-ELSE logic inside queries or updates.

45
Q

UPDATE

A

A SQL statement to modify existing row values in a table.

46
Q

Transaction

A

A sequence of one or more SQL operations that form a single logical unit of work, typically ending with COMMIT or ROLLBACK.

47
Q

Join

A

A SQL operation that combines rows from two tables based on a related column between them (often matching rows with a specific condition).

48
Q

Natural Join

A

A type of join that automatically matches columns between two tables with the same name and removes duplicate columns in the result.

49
Q

Inner Join

A

A join that returns rows where there is at least one match in both tables.

50
Q

Outer Join

A

A set of join operations (LEFT, RIGHT, FULL) that include rows from one or both tables even if they do not match in the other table.

51
Q

Left Outer Join

A

An outer join that returns all rows from the left (first) table, plus matched rows from the right (second) table.

52
Q

Right Outer Join

A

An outer join that returns all rows from the right (second) table, plus matched rows from the left (first) table.

53
Q

Full Outer Join

A

An outer join that returns all rows from both tables, with matched rows merged into a single row.

54
Q

USING Clause

A

A clause that specifies which columns should be used to match rows when performing joins.

55
Q

ON Condition

A

A clause in a join specifying a custom condition for matching rows.

56
Q

View

A

A virtual table derived from one or more real tables (or other views) through a SELECT query.

57
Q

CREATE VIEW

A

A SQL statement used to define a new view based on a query expression.

58
Q

Materialized View

A

A view whose results are physically stored (copied) for quick access.

59
Q

View Expansion

A

The process of internally rewriting a query on a view by substituting the view’s defining query into the main query.

60
Q

Updating a View

A

The action of performing INSERT, UPDATE, or DELETE on a view.

61
Q

COMMIT

A

A SQL statement to end a transaction, making all the changes within the transaction permanent in the database.

62
Q

ROLLBACK

A

A SQL statement to undo all changes made in the current transaction.

63
Q

UNIQUE Constraint

A

Similar to PRIMARY KEY but allows NULL values. Ensures that values in specified column(s) are distinct across rows.

64
Q

CHECK Constraint

A

A condition that each row in the table must satisfy.

65
Q

Assertion

A

A database-wide constraint (using CREATE ASSERTION) that enforces a condition involving multiple tables.

66
Q

Referential Integrity

A

Ensures that a foreign key value in one table corresponds to an existing primary key in another table.

67
Q

FOREIGN KEY

A

A column (or set of columns) in one table whose values must match the primary key of another table.

68
Q

ON DELETE CASCADE / ON UPDATE CASCADE

A

Options that automatically propagate deletions or updates from the referenced (parent) table to the referencing (child) table.

69
Q

SQL Data Types (DATE, TIME, TIMESTAMP)

A

Built-in types in SQL to represent dates, times, and combined date+time values.

70
Q

INTERVAL

A

A type representing a duration or period of time (e.g., days, hours).

71
Q

Large Object (LOB) Types

A

Data types for storing large unstructured objects: BLOB: Binary Large Object, CLOB: Character Large Object.

72
Q

User-Defined Type (UDT)

A

A custom type created with CREATE TYPE, allowing developers to define new domain-specific data types.

73
Q

Domain

A

A user-defined data type created with CREATE DOMAIN that can include constraints such as NOT NULL or CHECK.

74
Q

Index

A

A data structure (e.g., B+ tree, hash) that speeds up data retrieval on specific columns.

75
Q

GRANT Statement

A

Used to give specific privileges (SELECT, INSERT, etc.) on a database object (table, view) to a user.

76
Q

REVOKE Statement

A

Used to remove previously granted privileges from a user or role.

77
Q

Roles

A

Named groups of privileges in SQL.

78
Q

WITH GRANT OPTION

A

A clause in a GRANT statement allowing the recipient to further grant the same privileges to other users.