= (Equals) (SQL Server Compact Edition)

Compares two expressions. When you compare nonnull expressions by using this operator, the result is TRUE when both operands are equal. Otherwise, the result is FALSE.

Syntax

expression = expression

Arguments

  • expression
    Any valid expression in Microsoft SQL Server 2005 Compact Edition. Both expressions must have implicitly convertible data types. The conversion depends on the rules of data type precedence.

Result Types

bit

Example

The following example uses the equals comparison operator to select a specific customer in the Orders table.

SELECT * FROM Orders WHERE CustomerID = 'VINET'