How many payment transactions were greater than $5.00? select count (amount) from payment where amount > 5.00 ; How many actors have a first name that starts with the letter P? select count(*) from actor where first_name like 'P%'; How many unique districts are our customers from? select count (distinct(district)) from address; Retrieve the list of names for those distinct districts from the pr..