Basic question. In SQL, is there a quicker way to list conditions in a SELECT statement using the OR operator?
At the moment I'm writing multiple conditions in my statements like this:
SELECT * FROM customers WHERE City = 'Berlin' OR City = 'London' OR
City = 'Dublin';
Is there a shorter way of doing this, without having to write 'City =' for each condition, perhaps?