Search the Whole World Here.,.,

SQL - IN Operator Example


The following SQL statement selects all customers with a City of "Paris" or "London":

Example

SELECT * FROM Customers
WHERE City IN ('Paris','London');
Try it Yourself »


EmoticonEmoticon