Structured query language (sql) Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What do Relational database management systems use?

A

Relational database management systems (RDBMS) support the use of structured query language (SQL) for control and database maintenance purposes.

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

What does the statement CREATE do?

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

What does the statement DROP do?

A

This can be used to delete tables

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

What does the statement INSERT do?

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

What does the statement UPDATE do?

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

What does the statement DELETE do?

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

What does the statement SELECT do?

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

What does the statement INNER JOIN do?

A

An inner join between two tables will return the rows where there is a match between the two tables; for example, using the Customers and Sessions tables from above:

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

What does the statement AND do?

A

Displays result if condition 1 AND condition 2 are TRUE

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

What does the statement OR do?

A

Displays result if condition 1 OR condition 2 is TRUE

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