Inizia subitoInizia gratis

Histogram of orders

Dave also wants to plot the histogram of orders to see if it matches the shape of the histogram of revenues.

Send Dave a frequency table of orders by user.

Questo esercizio fa parte del corso

Analyzing Business Data in SQL

Visualizza corso

esercizio interattivo pratico

Prova questo esercizio completando questo codice di esempio.

SELECT
  -- Select the user ID and the count of orders
  ___,
  ___ AS orders
FROM orders
GROUP BY user_id
ORDER BY user_id ASC
LIMIT 5;
Modifica ed esegui il codice