1511. Customer Order Frequency
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| customer\_id | int |
| name | varchar |
| country | varchar |
+---------------+---------+
customer\_id is the primary key for this table.
This table contains information of the customers in the company.
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| product\_id | int |
| description | varchar |
| price | int |
+---------------+---------+
product\_id is the primary key for this table.
This table contains information of the products in the company.
price is the product cost.ac
Last updated