SQL Flashcards
How do you select all the rows from a table called ‘table’?
SELECT * FROM table
How do you order ‘table’ by the column called ‘column’?
SELECT * FROM table ORDER by column
How do you sort a table based on a column called ‘numbers’ in descending order?
SELECT * FORM table ORDER by numbers DESC
How do you select all the rows in ‘table’ where the type is ‘red’?
SELECT * FROM table WHERE type = “red”
How do you select all the rows in ‘table’ where the type is blue or pink?
SELECT * FROM table WHERE type = “blue” OR type = “pink”
How do you select all the rows in ‘table’ where the type is green or the number is less than 7?
SELECT * FROM table WHERE type = “green” OR number < 7
How do you select all the rows in ‘table’ where the type is not purple?
SELECT * FROM table WHERE type != purple
What are the four things you need to be able to do with SQL?
Create, Read, Update and Delete