Write a query on the customers table whose output will exclude all customers with a rating <= 100, unless they are located in Shimla.
SELECT * FROM customers WHERE rating > 100 OR city = 'Shimla' ;