All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0601_0700.s0620_not_boring_movies.script.sql Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
# Write your MySQL query statement below
# #Easy #Database #2023_02_06_Time_305_ms_(59.80%)_Space_0B_(100.00%)
select id, movie, description, rating from Cinema
WHERE mod(id,2) = 1
and
description not LIKE '%boring%'
order by rating DESC;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy