L-W Flashcards

1
Q

Returns all rows from the left table and matching rows from the right table

A

Left Join

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

Searches for a specific pattern in a column

A

Like

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

Specifies the number of records to return in the result set

A

Limit

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

Only includes rows where a condition is not true

A

Not

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

A constraint that enforces a column to not accept NULL values

A

Not Null

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

Includes rows where either condition is true

A

Or

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

Sorts the result set in ascending or descending order

A

Order By

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

Returns all rows when there is a match in either left table or right table

A

Outer Join

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

A constraint that uniquely identifies each record in a database table

A

Primary Key

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

A stored procedure

A

Procedure

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

Returns all rows from the right table and the matching rows from the left table

A

Right Join

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

Specifies the number of records to return in the result set

A

Rownum

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

Selects data from a database

A

Select

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

Selects only distinct (different) values

A

Select Distinct

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

Copies data from one table into a new table

A

Select Into

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

Specifies the number of records to return in the result set

A

Select Top

17
Q

Specifies which columns and values that should be updated is a table

A

Set

18
Q

Creates a table or adds deletes or modifies columns in a table or deletes a table or data inside a table

A

Table

19
Q

Specifies the number of records to return in the result set

A

Top

20
Q

Deletes the data inside a table but not the table itself

A

Truncate Table

21
Q

Combines the result set of two or more Select statements (only distinct values)

A

Union

22
Q

Combines the result set of two or more Select statements (allows duplicate values)

A

Union All

23
Q

A constraint that ensures that all values in a column are unique

A

Unique

24
Q

Updates existing rows in a table

A

Update

25
Q

Specifies the value of an Insert Into statement

A

Values

26
Q

Creates updates or deletes a view

A

View

27
Q

Filter a result set to include only records that fulfill a specified condition

A

Where