Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Multiplies two expressions.
Syntax
expression * expression
Arguments
expression
Any valid expression of any one of the numeric data types.
Result Types
The data type that results from the implicit type promotion of the two arguments. For more information about implicit type promotion, see Type System.
Example
The following Entity SQL query uses the * arithmetic operator to multiply two numbers. The query is based on the AdventureWorks Sales Model. To compile and run this query, follow these steps:
Follow the procedure in How to: Execute a Query that Returns StructuralType Results.
Pass the following query as an argument to the
ExecuteStructuralTypeQuerymethod:
SELECT VALUE product FROM AdventureWorksEntities.Products
AS product WHERE product.ListPrice = @price1 * @price2