# Equal operation

Learn how to check if a value is equal to another.

The equal operation checks whether two values are equal. Unlike relational operations, it works on any value, not just values that have a concept of order.

To check whether two values are equal, place the `==` operator between them:

```cql
/*<operand>*/ == /*<operand>*/
```

Here's a practical example involving strings:

```cql
"hello" == "hello" // true
```

And another one involving numbers:

```cql
1 == 1.0 // true
```

Although there is no natural language equivalent to the `==` operator, you can use the [`equal to`](/reference/cql/expressions/tests/comparison/equal) test for a more natural reading:

```cql
/*<operand>*/ is equal to /*<operand>*/
```

Note that operations and tests may differ in their behavior and precedence. Please refer to the documentation of each specific operation and test for more information.
