Write a SQL query to aggregate sales data by region.
Use the sales_transactions table. Return one row for each region, including rows where the region is NULL.
region and total_sales| Column | Type | Description |
|---|---|---|
| sale_idPK | INT | Unique identifier for the sale |
| region | VARCHAR(50) | Sales region |
| sales_amount | DECIMAL(12,2) | Sales amount for the transaction |