1867. Orders With Maximum Quantity Above Average
Description
+-------------+------+
| Column Name | Type |
+-------------+------+
| order\_id | int |
| product\_id | int |
| quantity | int |
+-------------+------+
(order\_id, product\_id) is the primary key for this table.
A single order is represented as multiple rows, one row for each product in the order.
Each row of this table contains the quantity ordered of the product product\_id in the order order\_id.ac
Previous1866. Number of Ways to Rearrange Sticks With K Sticks VisibleNext1868. Product of Two Run-Length Encoded Arrays
Last updated