1322. Ads Performance
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| ad\_id | int |
| user\_id | int |
| action | enum |
+---------------+---------+
(ad\_id, user\_id) is the primary key for this table.
Each row of this table contains the ID of an Ad, the ID of a user and the action taken by this user regarding this Ad.
The action column is an ENUM type of ('Clicked', 'Viewed', 'Ignored').
ac
Last updated