Select distinct customer.last_name, customer.first_name
from customer where not exists
(select null from rental inner join inventory
on rental.inventory_id=inventory.inventory_id
inner join film_actor
on inventory.film_id=film_actor.film_id
inner join actor
on film_actor.actor_id=actor.actor_id
where (actor.first_name='EMILY') and (actor.last_name='DEE') and (customer.customer_id=rental.customer_id))
order by customer.last_name asc;
;
show status like 'Last_query_cost';