Answers:
Narrows down the results of the data.
Reduces the strain on the client application
Reduce the time it takes to run the query
Removes unwanted data in a calculation
Helps you understand the contents of your data
Answers:
SELECT name FROM Artists WHERE name LIKE âK%â;
Answers:
False
Answers:
Wildcards take longer to run compared to a logical operator
Wildcards at the end of search patterns take longer to run
Answers:
Cannot sort by a column not retrieved
Can be anywhere in the select statement
Answers:
+ (addition)
- (subtraction)
/ (division)
* (multiplication)
Answers:
MAX()
MIN()
Count()
Answers:
GROUP BY clauses can contain multiple columns
NULLs will be grouped together if your Group By column contains NULLs
Every column in your select statement must be present in a group by clause, except for aggregated calculations.
Answers:
HAVING filters after the data is grouped.
Answers:
select, from, where, group by, having