Lesson 8:Retrieving Data From Multiple Tables Flashcards

1
Q

Subquery

A

A subquery is a query embedded in another query

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

SELECT Subquery

A

A SELECT subquery is embedded as another SELECT statement inside of a query

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

Outer Query

A

The main query that has an inner query embedded inside it.

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

Inner Query

A

This is a subquery; the query that is embedded inside another query.

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

IN

A

The IN conditional operator is a shorthand for multiple OR conditions. IN is used to filter records.

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

NOT

A

The NOT conditional operator is used to display a row if the condition is not true.

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

NOT IN

A

NOT IN combines the NOT and IN conditional operators. It will filter the result-set and retrieve rows that are NOT equal to the listed IN criteria.

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

OR

A

Or is a conditional operator where there are two or more conditions but only one must be true for the condition to be true.

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

AND

A

AND is a conditional operator for two or more conditions but both or all the conditions must be true for the condition to be true.

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

LIKE

A

The LIKE operator is used in the WHERE clause to find a specified pattern in a column. It is usually used with a wildcard.

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

Wildcard

A

A wildcard is a character that substitutes for one or more characters in a string. You have been using the * wildcard.

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

% Wildcard

A

Represents zero or more characters.

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

_ Wildcard

A

Represents a single character.

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