SQL Flashcards
(INNER) JOIN
Returns records that have matching values in both tables
LEFT (OUTER) JOIN
Returns all records from the left table, and the matched records from the right table
RIGHT (OUTER) JOIN
Returns all records from the right table, and the matched records from the left table
FULL (OUTER) JOIN
Returns all records when there is a match in either left or right table
Difference between inner and outer joins
Inner join requires matching values in both tables, outer only one table
Difference between union and join
Blank
What is SQL?
Blank
What is noSQL?
Blank
SQL Order of Operations
Blank
GROUP BY
BLANK
CASE
BLANK
JOIN syntax
BLANK
COUNT
BLANK
SUM
BLANK
MIN/MAX
BLANK
AVG
BLANK
*
All
What is a wildcard?
Represents one or more characters in a string
%
Wildcard that represents 0 or more characters
WHERE CustomerName LIKE ‘a%’
Finds any values that starts with “a”
WHERE CustomerName LIKE ‘%a’
Finds any values that ends with “a”
WHERE CustomerName LIKE ‘_r%’
Finds any values that have “r” in the second position
WHERE ContactName LIKE ‘a%o’
Finds any values that starts with “a” and ends with “o”
_
Wildcard that represents a single character
What is a primary key?
Blank
What is a foreign key?
Blank
What is a nested query?
Blank