WHERE clause to determine if a value is in several listed valuesDescribe the BETWEEN operator
BETWEEN operator can be used with any data types for which comparison operators, like < > =, are valid.The BETWEEN operator can be used with any data types for which comparison operators, like < > =, are valid. CHAR and VARCHAR are valid
% and _% matches any number of characters_ operator do?_ matches exactly 1 characterDESC keyword if the reverse is desiredCONCAT(s1, s2, …) which returns the string that results from concatenating the string arguments
- LOWER(s) which returns the lowercase_s_
- TRIM(s) which returns the string_s_without leading and trailing spaces
'YYYY-MM-DD','HH:MM:SS', or 'YYYY-MM-DD HH:MM:SS'formatHAVING is used with GROUP BY to filter group resultsjoin statementjoin is a SELECT statement that combines data from two tablesAS keywordINNER JOIN → Selects only matching left and right table rowsFULL JOIN → Selects all left and right table rows regardless of matchLEFT JOIN→ Selects all left table rows, but only matching right table rowsRIGHT JOIN→ Selects all right table rows, but only matching left table rows