create or replace view cliente_gaston as select customer.customer_id first_name, last_name, sum(amount) as total from customer join payment using(customer_id) group by first_name, last_name order by total desc limit 0,5
update customer set active=5 where customer_id in (select customer_id from cliente_gaston)