/ (除算) (Entity SQL)
1 つの値を別の値で除算します。
dividend / divisor
引数
- dividend
The numeric expression to divide. dividend is any valid expression of any one of the numeric data types.
- divisor
被除数を除算する数値式。 divisor is any valid expression of any one of the numeric data types.
戻り値の型
2 つの引数の暗黙の型の昇格の結果であるデータ型。 暗黙の型の昇格の詳細については、「型システム (Entity SQL)」を参照してください。
例
次の Entity SQL クエリでは、/ 算術演算子を使用して 2 つの数値の間で除算をします。 このクエリは、AdventureWorks Sales Model に基づいています。 このクエリをコンパイルして実行するには、次の手順を実行します。
Follow the procedure in StructuralType 結果を返すクエリの実行方法 (EntityClient).
Pass the following query as an argument to the
ExecuteStructuralTypeQuery
method:
SELECT VALUE product FROM AdventureWorksEntities.Products
AS product where product.ListPrice = @price1 / @price2