Structured Query Language
What is SQL?
This statement is used to filter your SQL query
What is the WHERE Statement?
This SQL keyword is used to filter rows based on a specific condition.
What is WHERE?
All columns in a table are represented by this symbol in a SELECT statement.
What is *?
It allows you to link data from two or more tables together into a single query result
What is a Join?
A unique identifier(employee id, or SSN, etc..)
What is A PRIMARY KEY?
When using the WHERE clause, this comparison operator is used to check if a value is greater than or equal to another.
What is >= (Greater Than or Equal To)?
This SQL keyword is used to arrange the result set in ascending order.
What is ORDER BY?
Returns all rows from the left table, and the matching rows from the right table. The result is NULL from the right side, if there is no match.
What is a LEFT JOIN?
SELECT, FROM, WHERE, GROUP BY, HAVING, ORDER BY
What are the six main clauses of a SQL statement?
used to combine multiple filter conditions in the WHERE clause
What is AND?
In a SELECT statement, this SQL function is used to count the number of rows.
What is COUNT()?
return all rows from the table in the right table and only matching rows from the table in the FROM clause
What is RIGHT JOIN?
used to filter rows where a specific column has no value
What is NULL?
When using SELECT DISTINCT, this is being excluded from the result set.
What are duplicate values?
a method of combining two or more tables so that the result includes unmatched rows of one of the tables, or of both tables
What is OUTER JOIN?
The acronym CTE stands for
What is a Common Table Expression?
In a WHERE clause, this logical operator is used to exclude rows that meet a specified condition.
What is "NOT"?
In a SELECT statement, this SQL function calculates the average value of a numeric column.
What is AVG()?
Compound query operator used to combine the results of 2 select statement without duplicating rows
What is UNION?