Write a SQL query to find the top three highest sales by region.
Use the provided regional and sales data. Return the three highest-value sales for every region that has sales, excluding regions without sales and sales assigned to unknown regions.
region_name, sale_id, sale_amount, and sale_rank.region_name, then sale_rank, then sale_id.| Column | Type | Description |
|---|---|---|
| region_idPK | INT | Unique identifier for a sales region |
| region_name | VARCHAR(100) | Display name of the sales region |
| Column | Type | Description |
|---|---|---|
| sale_idPK | INT | Unique identifier for a sale |
| region_id | INT | Identifier of the associated region |
| sale_amount | NUMERIC(12,2) | Value of the sale |