Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Average Booking Value
00:00
5 left

SQL for Average Booking Value

MediumSQL · PostgreSQL

Problem

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.

Output

  1. One row per customer.
  2. Columns: customer_id and average_booking_value.
  3. Round the average to two decimal places and sort by customer_id ascending.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique identifier for the transaction
customer_idINTIdentifier of the customer associated with the transaction
booking_valueNUMERIC(10,2) monetary value of the booking
Tablestransactions
Interviewer

Your question is SQL for Average Booking Value. Start with the requirements and the one table in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.