Structured query language (sql) Flashcards
What do Relational database management systems use?
Relational database management systems (RDBMS) support the use of structured query language (SQL) for control and database maintenance purposes.
What does the statement CREATE do?
What does the statement DROP do?
This can be used to delete tables
What does the statement INSERT do?
What does the statement UPDATE do?
What does the statement DELETE do?
What does the statement SELECT do?
What does the statement INNER JOIN do?
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:
What does the statement AND do?
Displays result if condition 1 AND condition 2 are TRUE
What does the statement OR do?
Displays result if condition 1 OR condition 2 is TRUE