Reference Guide > TDV Support for SQL Operators > Logical Operators > OR
 
OR
OR returns rows that must satisfy at least one of the given conditions.
Syntax
condition1 OR condition2
Remarks
This operator is not available through the Studio interface, so you must manually type it into a query on a SQL or SQL Script panel.
Example
SELECT ProductID, ProductName, ProductDescription
FROM /shared/examples/ds_inventory/products products
WHERE ReorderLevel > 5 OR UnitPrice > 22.00