Lesson 12 - Fundamentals of Database Systems: Data Manipulation Commands

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/124

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

125 Terms

1
New cards

Data Manipulation Language (DML)

Commands for manipulating data in databases.

2
New cards

Structured Query Language (SQL)

Standard language for managing relational databases.

3
New cards

Database Management System (DBMS)

Software for creating and managing databases.

4
New cards

Relational Database

Database structured into related tables.

5
New cards

CREATE DATABASE

SQL command to create a new database.

6
New cards

USE statement

Selects a database for subsequent commands.

7
New cards

CREATE TABLE

SQL command to create a new table.

8
New cards

Constraints

Rules defining data types in a column.

9
New cards

CHAR

Fixed-length string data type.

10
New cards

VARCHAR

Variable-length string data type.

11
New cards

INT

Integer data type for whole numbers.

12
New cards

DECIMAL

Data type for precise decimal numbers.

13
New cards

DATE

Data type for date values in YYYY-MM-DD.

14
New cards

DATETIME

Data type for date and time values.

15
New cards

TIMESTAMP

Data type for precise timestamp data.

16
New cards

TEXT

Data type for large text strings.

17
New cards

Rules of Precedence

Guidelines for evaluating operators in SQL.

18
New cards

Alias

Temporary name for a database table or column.

19
New cards

Task Optimizer

Analyzes execution plans for SQL queries.

20
New cards

Parser

Translates SQL statements into a parse tree.

21
New cards

Execution Plan

Algorithm for executing an SQL command.

22
New cards

MySQL

Popular open-source DBMS for relational databases.

23
New cards

SQL Server Express

Free version of Microsoft's SQL Server.

24
New cards

Oracle

Commercial DBMS known for enterprise applications.

25
New cards

Database Security

Measures to protect databases from unauthorized access.

26
New cards

Data Consistency

Ensures accuracy and reliability of data across users.

27
New cards

UNIQUE constraint

Ensures unique values in a column.

28
New cards

PRIMARY KEY constraint

Marks a column as a unique identifier.

29
New cards

DEFAULT constraint

Sets a default value for a column.

30
New cards

AUTO_INCREMENT

Automatically assigns incrementing values to a column.

31
New cards

CHECK constraint

Restricts values that can be entered in a column.

32
New cards

NOT NULL constraint

Excludes null values from a column.

33
New cards

identity(1,1)

MS SQL Server equivalent of AUTO_INCREMENT.

34
New cards

CREATE TABLE statement

Defines a new table structure in SQL.

35
New cards

IF NOT EXISTS

Prevents error if table already exists.

36
New cards

INSERT INTO statement

Adds new rows to a specified table.

37
New cards

VALUES clause

Specifies data to insert into columns.

38
New cards

NULL value

Represents missing or undefined data.

39
New cards

CHAR data type

Fixed-length character string type.

40
New cards

VARCHAR data type

Variable-length character string type.

41
New cards

TRY...CATCH construct

Handles errors during SQL execution.

42
New cards

Unique Key Violation

Inserting duplicate key value causes error.

43
New cards

Primary Key Violation

Inserting duplicate primary key causes error.

44
New cards

Foreign Key Violation

Inserting child row without parent causes error.

45
New cards

Data Type Conversion error

Value cannot be converted to column type.

46
New cards

SET ARITHABORT

Controls behavior of arithmetic errors.

47
New cards

NEWID() function

Generates a globally unique identifier.

48
New cards

Identity Column Property

Automatically increments value for new rows.

49
New cards

INSERT SELECT statement

Inserts data from one table to another.

50
New cards

INSERT multiple rows

Adds several rows in one statement.

51
New cards

Data Type Considerations

Padding or truncation affects CHAR and VARCHAR.

52
New cards

NULL handling

Specifying NULL allows absence of data.

53
New cards

Column order in INSERT

Columns can be specified in any order.

54
New cards

Error handling in INSERT

Errors prevent any rows from being inserted.

55
New cards

INSERT statement behavior

All or nothing; no partial inserts allowed.

56
New cards

INSERT statement

Used to add new rows to a table.

57
New cards

IDENTITY column

Column with auto-incrementing numeric values.

58
New cards

SET IDENTITY_INSERT

Allows explicit values for identity columns.

59
New cards

Default Values

Values automatically assigned by the DBMS.

60
New cards

NULL-able column

Column that can accept NULL values.

61
New cards

INSERT INTO SELECT

Inserts rows from one table to another.

62
New cards

Common Table Expression (CTE)

Temporary result set for complex queries.

63
New cards

SELECT clause

Fetches data from specified columns in tables.

64
New cards

WHERE clause

Filters records based on specified conditions.

65
New cards

Comparison Operators

Operators for comparing values in queries.

66
New cards

AND operator

Combines conditions, requiring both to match.

67
New cards

OR operator

Combines conditions, requiring at least one to match.

68
New cards

IN operator

Selects values that match a specified list.

69
New cards

BETWEEN operator

Selects values within a specified range.

70
New cards

ORDER BY clause

Organizes query results in a specified order.

71
New cards

LIMIT clause

Restricts the number of results returned.

72
New cards

TOP clause

Limits results in SQL Server queries.

73
New cards

UPDATE statement

Modifies existing records in a table.

74
New cards

INSERT SELECT syntax

Combines INSERT and SELECT for data insertion.

75
New cards

DBMS

Database Management System handling data operations.

76
New cards

INNER JOIN

Combines rows from two tables based on a condition.

77
New cards

Development copy

Test version of a database for development purposes.

78
New cards

Syntax

Rules governing the structure of SQL statements.

79
New cards

Fetch

Retrieve data from a database.

80
New cards

Column list

Specifies which columns to include in queries.

81
New cards

Condition

Criteria used to filter query results.

82
New cards

Value

Data assigned to a column in a database.

83
New cards

UPDATE Statement

Used to modify existing records in a table.

84
New cards

SET Clause

Identifies columns to be updated in SQL.

85
New cards

WHERE Clause

Filters records affected by SQL statements.

86
New cards

INSERT Statement

Adds new records to a specified table.

87
New cards

TRY...CATCH Construct

Handles errors during SQL statement execution.

88
New cards

Data Type Conversion Error

Happens when values can't convert to target type.

89
New cards

Exclusive Lock

Prevents other transactions from modifying data.

90
New cards

DELETE Statement

Removes one or more rows from a table.

91
New cards

Basic Structure of DELETE

Includes table name and criteria for removal.

92
New cards

Transaction

A sequence of operations treated as a single unit.

93
New cards

ROLLBACK

Reverts changes made during a transaction.

94
New cards

Primary Key

Uniquely identifies each record in a table.

95
New cards

High Performing Sales People

Salespeople with sales greater than $2,000,000.

96
New cards

Sample Update Example

Updates city for all salespeople to Ann Arbor.

97
New cards

Updating Multiple Columns

Allows changing several columns in one statement.

98
New cards

Updating Multiple Rows

Affected by conditions specified in the WHERE clause.

99
New cards

Deleting Every Row

Removes all records when no WHERE clause is used.

100
New cards

Deleting a Single Row

Targets a specific row using its primary key.