Operatori AND zgjedh tė dhėnat vetėm nėqoftėse tė dy kushtet janė tė vėrteta
Operatori OR zgjedh tė dhėnat nėse njėri nga dy kushtet ėshtė i vėrtetė.
Shembull i bazės sė tė dhėnave
Poshtė ėshtė tabela qe do marrim si shembull
Shembull i operatorit AND
Shembulli mė poshtė zgjedh tė gjithė klientėt nga shteti "Germany" dhe qyteti "Berlin" nga tabela "Customers".
SELECT * FROM Customers WHERE Country='Germany' AND City='Berlin';
Shembull me operatorin OR
Shembulli me operatorin OR zgjedh tė gjithė klientet nga qyteti i "Berlin" ose "München" nga tabela "Customers"
SELECT * FROM Customers WHERE City='Berlin' OR City='München';
Kombinimi i tė dy operatoreve AND dhe OR
Ju mund to kombinoni operatoret nė cdo radhė qė dėshironi, (Nėse zgjedhja ėshtė kompleks atėherė ndajini grupet e operatorėve me klapa)
Deklarata mė poshtė zgjedh tė gjithė klientet nga shteti "Germany" dhe qyteti "Berlin" ose "München" nga tabela "Customers".
SELECT * FROM Customers WHERE Country='Germany' AND (City='Berlin' OR City='München');