> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_EqualsExact

Returns true when two geometries have the same structure and corresponding coordinates are equal within a tolerance. Unlike `ST_Equals`, component, ring, vertex, and coordinate order must match. Z and M coordinates are ignored.

## Signatures

```sql theme={"system"}
ST_EqualsExact(A: Geometry, B: Geometry, tolerance: Double)
```

## Parameters

<ParamField body="A" type="Geometry" required>The first geometry.</ParamField>
<ParamField body="B" type="Geometry" required>The second geometry.</ParamField>
<ParamField body="tolerance" type="Double" required>The maximum distance between corresponding coordinates.</ParamField>

## Return type

<ResponseField type="Boolean">Returns `true` or `false`.</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_EqualsExact(ST_GeomFromWKT('POINT (0 0)'), ST_GeomFromWKT('POINT (0.03 0.04)'), 0.05)
```

```text theme={"system"}
true
```
