# $max

Update records by setting the value of a numeric column to the maximum of its current value and a specified number. The $max method works similarly to Math.max(), which returns the largest of two values. It is used to ensure that the column’s value doesn’t fall below a given maximum threshold. For example, if the current value is less than the specified number, it will be updated to the specified number.

```typescript
await Member.$update({
    $where: { 
        age: { 
            $eq: 16 
        } 
    },
    $update: {
        $max: {
          age: 1
        }
    }
});
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://fivesobes.gitbook.io/nexorm/operators/update-operators/number-operators/usdmax.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
