Module 4 Flashcards

1
Q

Database

A

An organized collection of information or data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Spreadsheets

A

Designed for a single user or a small team

Store less data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Databases

A

Accessed by multiple people simultaneously

Store massive amounts of data

Perform complex tasks while accessing data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Relational Database

A

A structured database contains by tables that are related to each other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Primary Key

A

A column where every row has a unique entry

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Foreign Key

A

A column in a table that is a primary key in another table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

SQL (Structured Query Language)

A

A programming language used to create, interact with. And request information from a database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Query

A

A request for data from a database table or a combination of tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Log

A

A record of events that occur within an organizations systems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Select

A

Indicates which columns to return

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

From

A

Indicates which table to query

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Syntax

A

The rules that determine what is correctly structured in a computing language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Filtering

A

Selecting data that match a certain condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Where

A

Indicates the condition for a filter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Like

A

Used with WHERE to search for a pattern in a column

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Common Data Types

A

String

Numeric

Date and Time

17
Q

String Data

A

Data consisting of an ordered sequence of characters

18
Q

Date and Time Data

A

Data representing a date and/or time

19
Q

Operators

A

=

>

<

<>

> =

<=

20
Q

Between

A

An operator that filters for numbers or dates within a range

21
Q

And

A

Specifies that both conditions must be met simultaneously

22
Q

Or

A

Specifies that either condition can be met

23
Q

Not

A

Negates a condition

24
Q

Inner Join

A

Returns rows matching on a specified column that exists in more than one table

25
Q

Types of Outer Joins

A

Left Join

Right Join

Full Outer Join

26
Q

Left Join

A

Returns all of the records of the first table, but only returns rows of the second table that match on a specified column

27
Q

Right Join

A

Returns all of the records of the second table, but only returns rows from the first table that match on a specified column

28
Q

Full Outer Join

A

Returns all records from both tables