SQL Flashcards

1
Q

What is SQL and how is it different from languages like JavaScript?

A

Structured Query Language
primary way of retrieving, creating, and manipulating data in a relational database.
-A declarative language (programmers describe the results they want and the programming environment comes up with its own plan for getting those results)

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

How do you retrieve specific columns from a database table?

A

Select statement

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

How do you filter rows based on some specific criteria?

A

Where keyword followed by a statement that is either truthy or falsy

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

What are the benefits of formatting your SQL?

A

Easier to read

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

What are four comparison operators that can be used in a where clause?

A

= > < !=

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

How do you limit the number of rows returned in a result set?

A

Limit statement

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

How do you retrieve all columns from a database table?

A

*

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

How do you control the sort order of a result set?

A

Order by statement

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

How do you add a row to a SQL table?

A

Insert into “table” (“column”, “names”)

‘new value’, ‘new value

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

What is a tuple?

A

list of values

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

How do you add multiple rows to a SQL table at once?

A

comma separated list of tuples

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

How to you get back the row being inserted into a table without a separate select statement?

A

returning *

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

How do you update rows in a database table?

A

Update statement

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

Why is it important to include a where clause in your update statements?

A

Otherwise, you update the WHOLE database

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

How do you delete rows from a database table?

A

delete from “table”

where “condition”

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

How do you accidentally delete all rows from a table?

A

Not including the where statement or a where statement where EVERYTHING is true

17
Q

What is a foreign key?

A

A column (usually an ID) that both tables have in common

18
Q

How do you join two SQL tables?

A

join statement

19
Q

How do you temporarily rename columns or tables in a SQL statement?

A

“table”.”column” as “newName”

20
Q

What are some examples of aggregate functions?

A

sum(), avg(), count()

21
Q

What is the purpose of a group by clause?

A

to decide how the group will be aggregated