SQL OR Keyword

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );



SQL OR Keyword



❮ SQL Keywords Reference



OR


The OR command is used with WHERE to include
rows where either condition is true.


The following SQL statement selects all fields from "Customers" where city is
"Berlin" OR city is "München":




Example



SELECT * FROM Customers

WHERE City='Berlin' OR City='München';


Try it Yourself »




❮ SQL Keywords Reference