Tatari needs to measure immediate website response after each ad airing. Write a PostgreSQL query that counts website visits occurring from the airing timestamp through five minutes afterward, including both endpoints.
| Column | Type | Description |
|---|---|---|
| airing_idPK | INTEGER | Unique identifier for the ad airing |
| campaign_name | VARCHAR(100) | Tatari campaign associated with the airing |
| aired_at | TIMESTAMP | Timestamp when the ad aired |
| Column | Type | Description |
|---|---|---|
| visit_idPK | INTEGER | Unique identifier for the website visit |
| visited_at | TIMESTAMP | Timestamp when the website visit occurred |
| landing_page | VARCHAR(200) | Initial page visited |