Actores que tengan una x en el nombre o en el apellido
Direcciones de california que tengan ‘274’ en el número de teléfono
Películas ‘Épicas’ (Epic) o ‘Brillantes’ (brilliant) que duren más de 180 minutos
Películas que duren entre 100 y 120 minutos o entre 50 y 70 minutos
Películas que cuesten 0.99, 2.99 y tengan un rating ‘g’ o ‘r’ y que hablen de cocodrilos (cocodrile)
Direcciones de ontario o de punjab o que su código postal acabe en 5 o que su teléfono acabe en 5
SELECT * FROM sakila.actor where first_name like '%x%' or last_name like '%x%' SELECT * FROM sakila.address where district='california' and phone like '%274%' SELECT * FROM sakila.film where (description like '%epic%' or description like '%brilliant%') and length>180 SELECT * FROM sakila.film where length between 100 and 120 or length between 50 and 70 SELECT * FROM sakila.film where description like '%crocodile%' and rental_rate in (0.99,2.99) and rating in ('R','G') SELECT * FROM sakila.address where district='ontario' or district='punjab' or postal_code like '%5' or phone like '%5'