1454. Active Users
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| id | int |
| name | varchar |
+---------------+---------+
the id is the primary key for this table.
This table contains the account id and the user name of each account.+---------------+---------+
| Column Name | Type |
+---------------+---------+
| id | int |
| login\_date | date |
+---------------+---------+
There is no primary key for this table, it may contain duplicates.
This table contains the account id of the user who logged in and the login date. A user may log in multiple times in the day.ac
Previous1453. Maximum Number of Darts Inside of a Circular DartboardNext1455. Check If a Word Occurs As a Prefix of Any Word in a Sentence
Last updated