1607. Sellers With No Sales
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| customer\_id | int |
| customer\_name | varchar |
+---------------+---------+
customer\_id is the primary key for this table.
Each row of this table contains the information of each customer in the WebStore.+---------------+---------+
| Column Name | Type |
+---------------+---------+
| order\_id | int |
| sale\_date | date |
| order\_cost | int |
| customer\_id | int |
| seller\_id | int |
+---------------+---------+
order\_id is the primary key for this table.
Each row of this table contains all orders made in the webstore.
sale\_date is the date when the transaction was made between the customer (customer\_id) and the seller (seller\_id).ac
Previous1606. Find Servers That Handled Most Number of RequestsNext1608. Special Array With X Elements Greater Than or Equal X
Last updated