Module 1.1: Relational Database Technology

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/10

flashcard set

Earn XP

Description and Tags

Prelim Topic

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Relational Database

  • It is a collection of relations or two-dimensional tables.

  • Allows tables to be related by means of a common field.

  • As few as two tables can be considered a relational database if they share a common field

<ul><li><p>It is a collection of relations or two-dimensional tables.</p></li><li><p>Allows tables to be related by means of a common field.</p></li><li><p>As few as two tables can be considered a relational database if they share a common field</p></li></ul><p></p>
2
New cards

Table

(Key Terms)

  • Basic storage structure

3
New cards

Column

(Key Terms)

  • One kind of data in a table

4
New cards

Row

(Key Terms)

  • Data for one table instance

5
New cards

Field

(Key Terms)

  • The one value found at the intersection of a row and a column

6
New cards

Primary Key

(Key Terms)

  • Unique identifier for each row

  • Each row of data in a table is uniquely identified by this

7
New cards

Foreign Key

(Key Terms)

  • A column that refers to a primary-key column in another table

  • You can logically relate data from multiple tables using these

8
New cards

Data Manipulation Language (DML)

(Categories of SQL Statements)

  • These statements begin with SELECT, INSERT, UPDATE, DELETE, or MERGE and are used to modify the table data by entering new rows, changing existing rows, or removing existing rows.

9
New cards

Data Definition Language (DDL)

(Categories of SQL Statements)

  • These statements create, change, and remove data structures from the database.

  • The keywords CREATE, ALTER, DROP, RENAME, TRUNCATE, COMMENT.

10
New cards

Transaction Control Language (TCL)

(Categories of SQL Statements)

  • These statements are used to manage the changes made by DML statements.

  • Changes to the data are executed using COMMIT, ROLLBACK, and SAVEPOINT

  • _ changes can be grouped together into logical transactions

11
New cards

Data Control Language (DCL)

  • DCL keywords GRANT and REVOKE are used to give or remove access rights to the database and the structures within it