[Querying and Filtering Data]

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

1/16

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.

17 Terms

1
New cards

Querying Data

The first task a data analyst performs when working with data.

2
New cards

SQL

A tool used by data analysts to query data.

3
New cards

Graphical Data Tools

Tools like SQL Server Management Studio and Tableau used for querying data.

4
New cards

Unique Identifiers

Product IDs that can be difficult to understand without additional information.

5
New cards

Joining Tables

Merging data from multiple tables to make reports more informative.

6
New cards

Inner Join

Returns only the matching rows between two tables.

7
New cards

Left Outer Join

Returns all the records from the left table and matching records from the right, with nulls for non-matches.

8
New cards

Right Outer Join

Returns all the records from the right table and matching records from the left, with nulls for non-matches.

9
New cards

Full Outer Join

Returns all records from both tables, with nulls for unmatched data.

10
New cards

Cross Join

Returns the cartesian product of two tables.

11
New cards

Primary Purpose of Filtering Data

To restrict the rows in a dataset based on a condition.

12
New cards

Where Clause

SQL clause commonly used to filter data.

13
New cards

Parameterization

Using parameters in queries to allow dynamic values.

14
New cards

Indexing

Creating a data structure to improve speed and efficiency of data retrieval.

15
New cards

Temporary Table

A table that exists only within a session and is deleted upon disconnect.

16
New cards

Nested Query or Subquery

A query within another SQL query used to simplify complex queries.

17
New cards

Query Execution Plan

A visualization of the order in which a query is executed.