1581. Customer Who Visited but Did Not Make Any Transactions
Description
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| visit\_id | int |
| customer\_id | int |
+-------------+---------+
visit\_id is the primary key for this table.
This table contains information about the customers who visited the mall.+----------------+---------+
| Column Name | Type |
+----------------+---------+
| transaction\_id | int |
| visit\_id | int |
| amount | int |
+----------------+---------+
transaction\_id is the primary key for this table.
This table contains information about the transactions made during the visit\_id.ac
Last updated