このフィルタリング条件を使用するパラメータ(@Productcategoryおよび@PriceRange)にデータセットをバインドする方法を教えてもらえますか、またはこのフィルタを作成する別の方法があります。
ありがとうエマ
WHERE ( ( ProductCategory.Name = @ProductCategory OR
( @ProductCategory = 'All Bike Related' AND
ProductCategory.Name IN ('Bikes', 'Components')) OR
(@ProductCategory ='All')
) AND
( (@PriceRange = 'Less than 50' AND ListPrice < 50) OR
(@PriceRange ='50 to 99' AND ListPrice BETWEEN 50 AND 99) OR
(@PriceRange ='100 to 499' AND ListPrice BETWEEN 100 AND 499) OR
(@PriceRange ='500 and higher 'AND ListPrice >=500) OR
(@PriceRange = 'All')
)
)