# ST\_GeometryType

Returns the type of the geometry as a string

## Signature

> ST\_GeometryType(geometry)

## Usage Examples

These examples are based on the [Streaming Quick Start](https://docs.pinot.apache.org/release-0.11.0/basics/getting-started/quick-start#streaming).

```sql
select location, ST_GeometryType(location) AS type
from meetupRsvp 
LIMIT 1
```

| location                           | type  |
| ---------------------------------- | ----- |
| 80c00dae147ae147ae404435c28f5c28f6 | Point |
