Search the Whole World Here.,.,

SQL - AND Operator Example


The following SQL statement selects all customers from the country "Germany" AND the city "Berlin", in the "Customers" table:

Example

SELECT * FROM Customers
WHERE Country='Germany'
AND City='Berlin';
Try it Yourself »


EmoticonEmoticon