I am using the OR operator in the following fashion:
SELECT * FROM Customers
WHERE City = "Berlin" OR City = "London"
The above returns a results table containing some data, however what also returns data is:
SELECT * FROM Customers
Where City = "Berlin" OR "London"
I am using a questionable SQL editor currently, and want to know if this would be valid in a MySQL environment.