Access Relationships, Sorting, Filtering, and Queries

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/32

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts related to Access Relationships, Sorting, Filtering, and Queries.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

33 Terms

1
New cards

Relationship

A connection between two tables based on common fields.

2
New cards

Primary Key

A unique identifier for each record in a table (e.g., StudentID).

3
New cards

Foreign Key

A field in one table that refers to the primary key in another table.

4
New cards

Related Table

A table linked to another table through a relationship.

5
New cards

Join Lines

Graphical lines in the Relationships window showing how tables are connected.

6
New cards

Referential Integrity

Rules ensuring valid relationships and preventing orphaned records.

7
New cards

Enforce Referential Integrity

Ensures that relationships between tables remain consistent.

8
New cards

Cascade Delete Related Fields

Automatically deletes related records if the primary record is deleted.

9
New cards

Cascade Update Related Fields

Automatically updates foreign keys if the primary key changes.

10
New cards

One-to-Many Relationship

One record in a table links to multiple records in another (most common type).

11
New cards

Data Redundancy

Unnecessary duplication of data; normalization helps reduce this.

12
New cards

Field Property

Settings that define a field’s behavior (e.g., format, validation rules).

13
New cards

Sort

Arranges records in a specified order.

14
New cards

Sort Ascending

Sorts from A-Z or 0-9.

15
New cards

Sort Descending

Sorts from Z-A or 9-0.

16
New cards

Filter

Displays only records that meet certain criteria.

17
New cards

Filter by Form

Allows filtering using a form-like interface with multiple criteria.

18
New cards

Filter by Selection

Filters records based on a selected value in a field.

19
New cards

Query

A request for data retrieval or manipulation from a database.

20
New cards

Criterion

A condition used in queries (e.g., ="NY" for New York).

21
New cards

AND Logical Operator

Requires all conditions to be true (e.g., City="NY" AND Age>30).

22
New cards

NOT Logical Operator

Excludes records matching a condition (e.g., NOT "NY").

23
New cards

Wildcard

Symbols like * (any characters) or ? (single character) for partial matches.

24
New cards

Simple Query Wizard

A guided tool to create basic queries.

25
New cards

Query Design View

A graphical interface to build and modify queries.

26
New cards

Field Row

The row in Query Design where fields are selected.

27
New cards

Table Row

Shows the source table for each field in a query.

28
New cards

Sort Row

Specifies sorting (Ascending/Descending) for query results.

29
New cards

Show Row

Toggles whether a field appears in query results.

30
New cards

Criteria Row

Defines conditions for filtering query results.

31
New cards

Run Command

Executes the query to display results.

32
New cards

Multitable Query

A query that pulls data from multiple related tables.

33
New cards

Select Query

Retrieves data without modifying it (most common query type).