SQL
UND-ODER-Operatoren
Suche…
Syntax
SELECT * FROM-Tabelle WHERE (Bedingung1) AND (Bedingung2);
SELECT * FROM Tabelle WHERE (Bedingung1) ODER (Bedingung2);
UND ODER Beispiel
Einen Tisch haben
Name | Alter | Stadt |
---|---|---|
Bob | 10 | Paris |
Matte | 20 | Berlin |
Maria | 24 | Prag |
select Name from table where Age>10 AND City='Prague'
Gibt
Name |
---|
Maria |
select Name from table where Age=10 OR City='Prague'
Gibt
Name |
---|
Bob |
Maria |
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow