The Nio Robotics Fleet Console records websites visited by robotics operators. Write a PostgreSQL query that identifies the three most visited websites based on human visits.
is_bot is TRUE.website_id ascending for deterministic tie handling, and return only the top three websites.websites and page_visits tables. Websites with no qualifying visits should remain eligible for ranking with zero counts.| Column | Type | Description |
|---|---|---|
| website_idPK | INTEGER | Unique website identifier |
| domain | VARCHAR(255) | Website domain |
| category | VARCHAR(80) | Website category |
| Column | Type | Description |
|---|---|---|
| visit_idPK | INTEGER | Unique visit identifier |
| website_id | INTEGER | Visited website identifier |
| visitor_id | INTEGER | Operator identifier, null for anonymous visits |
| visited_at | TIMESTAMP | Timestamp of the visit |
| is_bot | BOOLEAN | Whether the visit was generated by a bot |