リファレンスガイド> SQL演算子のTDVサポート> 論理演算子> OR
 
OR
ORは、指定された条件を満たす必要がある行を返します。
構文
condition1 OR condition2
備考
この演算子は、Studioインターフェイスからは使用できませんため、SQLまたはSQLスクリプトパネルのクエリに手動で入力する必要があります。
SELECT ProductID, ProductName, ProductDescription
FROM /shared/examples/ds_inventory/products products
WHERE ReorderLevel > 5 OR UnitPrice > 22.00