Given a table of API response times, write a query to find the 95th percentile of latency per day.
Use PostgreSQL syntax. Ignore NULL latency values when calculating the percentile.
response_date, p95_latency_msresponse_date ascending| Column | Type | Description |
|---|---|---|
| response_idPK | INT | Unique identifier for the API response record |
| response_at | TIMESTAMP | Timestamp when the API response was recorded |
| latency_ms | NUMERIC(10,2) | API response latency in milliseconds |
| endpoint | VARCHAR(100) | API endpoint that produced the response |