# minString

Get the minimum string value lexicographically from a string column

## Signature

> MINSTRING(colName)

## Usage Examples

These examples are based on the [Batch Quick Start](https://docs.pinot.apache.org/start-here/quick-start#batch-processing).

```sql
select MINSTRING(playerName) as minString from baseballStats
```

| minString |
| --------- |
| A. Harry  |
