Database Key Terms - Digi Sol

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/7

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:33 AM on 4/29/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

8 Terms

1
New cards

Relational database

A collection of data tables linked by Primary Keys and Foreign Keys. Different from a spreadsheet, which is a single table.

2
New cards

Table

A set of rows and columns that stores one type of thing (e.g. Students, Orders, Items).

3
New cards

Record (row)

A row in a table — represents a single instance of whatever the table stores (one student, one order).

4
New cards

Field (column)

One column in a table — one piece of information recorded about each record (e.g. Name, YearLevel).

5
New cards

Primary Key (PK)

A field (or small group of fields) that uniquely identifies each record in the table. Cannot be NULL and cannot be duplicated. Usually underlined on a diagram.

6
New cards

Foreign Key (FK)

A field in one table that matches the Primary Key of another table. This creates the link (relationship) between the two tables, Often written with (FK) next to it.

7
New cards

Relationship

The link between two tables, created when a PK in one table is referenced as an FK in another. Shown on a diagram with a line connecting the two fields.

8
New cards

One-to-many

A relationship where ONE record in Table A can be linked to MANY records in Table B (e.g. one student can have many orders, but each order belongs to only one student).