Write a SQL query to find the average booking value per customer from the transactions table.
Use all transaction rows. Null booking values should not contribute to the average, but customers whose transactions all have null values should remain in the output.
customer_id and average_booking_value.customer_id ascending.| Column | Type | Description |
|---|---|---|
| transaction_idPK | INT | Unique identifier for the transaction |
| customer_id | INT | Identifier of the customer associated with the transaction |
| booking_value | NUMERIC(10,2) | monetary value of the booking |