select*fromcinemawheremod(id,2) =1anddescription !='boring'orderbyratingDESC
SELECT
*
FROM
cinema
WHERE
id%2 <> 0 and description <> 'boring'
order by rating desc
select*fromcinemawheremod(id,2) =1anddescription !='boring'orderbyratingDESC
SELECT
*
FROM
cinema
WHERE
id%2 <> 0 and description <> 'boring'
order by rating desc