Consider the following SQL statement:
SELECT
invoice.customer_name,
invoice.customer_id,
invoice.shop_location,
sum(invoice.cost)
FROM invoice
GROUP BY
invoice.customer_name, invoice.customer_id, invoice.shop_location
What can be done to the statement to identify which rows would be identical to other rows if it weren't for their invoice.shop_location
value?