1934. Confirmation Rate
Description
+----------------+----------+
| Column Name | Type |
+----------------+----------+
| user\_id | int |
| time\_stamp | datetime |
+----------------+----------+
user\_id is the primary key for this table.
Each row contains information about the signup time for the user with ID user\_id.+----------------+----------+
| Column Name | Type |
+----------------+----------+
| user\_id | int |
| time\_stamp | datetime |
| action | ENUM |
+----------------+----------+
(user\_id, time\_stamp) is the primary key for this table.
user\_id is a foreign key with a reference to the Signups table.
action is an ENUM of the type ('confirmed', 'timeout')
Each row of this table indicates that the user with ID user\_id requested a confirmation message at time\_stamp and that confirmation message was either confirmed ('confirmed') or expired without confirming ('timeout').ac
Previous1933. Check if String Is Decomposable Into Value-Equal SubstringsNext1935. Maximum Number of Words You Can Type
Last updated