A-C Flashcards

1
Q

Adds a column in an existing table

A

Add

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

Adds a constraint after a table is already created

A

Add Constraint

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

Returns true of all of the sub query values meet the condition

A

All

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

Adds deletes or modify columns in a table, or changes the data type of a column in a table

A

Alter

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

Changes the data type of a column in a table

A

Alter Column

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

Adds deletes or modifies columns in a table

A

Alter Table

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

Only includes rows where both conditions are met

A

And

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

Returns true if any of the sub query values meet the condition

A

Any

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

Renames a column in a table with an Alia’s

A

As

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

Sorts the result set in ascending order

A

Asc

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

Creates a backup of an existing database

A

Backup Database

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

Selects values within a given range

A

Between

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

Creates different output based on condition

A

Case

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

A constraint that that limits the value that can be placed in a column

A

Check

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

Changes the data type of a column or deletes a column in a table

A

Column

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

Adds or deletes a constraint

A

Constraint

17
Q

Creates a database index view table or procedure

A

Create

18
Q

Creates a new SQL database

A

Create Database

19
Q

Creates an index on a table (allows duplicate values)

A

Create Index

20
Q

Updates a View

A

Create or Replace View

21
Q

Creates a new table in the database

A

Create Table

22
Q

Creates a Stored Procedure

A

Create Procedure

23
Q

Creates a unique index on a table (no duplicate values)

A

Create Unique Index

24
Q

Creates a view based on the result set of a Select statement

A

Create View