SQL Flashcards

1
Q

How do you select all the rows from a table called ‘table’?

A

SELECT * FROM table

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

How do you order ‘table’ by the column called ‘column’?

A

SELECT * FROM table ORDER by column

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

How do you sort a table based on a column called ‘numbers’ in descending order?

A

SELECT * FORM table ORDER by numbers DESC

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

How do you select all the rows in ‘table’ where the type is ‘red’?

A

SELECT * FROM table WHERE type = “red”

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

How do you select all the rows in ‘table’ where the type is blue or pink?

A

SELECT * FROM table WHERE type = “blue” OR type = “pink”

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

How do you select all the rows in ‘table’ where the type is green or the number is less than 7?

A

SELECT * FROM table WHERE type = “green” OR number < 7

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

How do you select all the rows in ‘table’ where the type is not purple?

A

SELECT * FROM table WHERE type != purple

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

What are the four things you need to be able to do with SQL?

A

Create, Read, Update and Delete

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