リファレンスガイド
>
TDV SQLのキーワードと構文
>
WHERE
WHERE
WHERE句は、何らかの基準を満たすレコードのみを抽出します。
構文
SELECT columnA [, columnB, ... ]
FROM tableX
WHERE columnY <expression>
例
SELECT ProductID, ProductName, ProductDescription
FROM /shared/examples/ds_inventory/products Products
WHERE
ReorderLevel > 5