7. List all customers excluding those with rating <= 100 or they are located in Rome.
SELECT
*
FROM
customer
WHERE
NOT (
rating <= 100
OR city = 'Rome'
);
Output:

SELECT
*
FROM
customer
WHERE
NOT (
rating <= 100
OR city = 'Rome'
);
