# NEG

```
NEG(numExpr)
```

Returns the negative value of an `expression` it has to evaluate to a number type.

Available in:

| Processors | SQL Studio |
| ---------- | ---------- |
| ✓          | ✓          |

*Sample code:*

```sql
USE `kafka`;
SELECT 
    NEG(float),
    float 
FROM numbers-data
LIMIT 1;
```

*Output:*

```json
{
  "value": {
    "NEG": -95.95,
    "float": 95.95
  }
}
```
