English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Usage and Example of SQL AND Keyword

SQL Keyword Reference

AND

The AND command used with WHERE includes only the rows where both conditions are true.

The following SQL statement selects the country from 'Customers':/All fields for regions 'Germany' and cities 'Berlin':

 SELECT * SELECT FROM Customers WHERE Country='Germany' AND City='Berlin';

SQL Keyword Reference