Practice Interview Questions
| Question | Status |
|---|---|
Write a query to retrieve the list of unique worker IDs who logged in between January 10th and January 25th, 2023.
user_logins table:
| Column Name | Description |
|---|---|
| id | Unique identifier for each login |
| worker_id | Worker who logged in |
| login_timestamp | Time the worker logged in |
| worker_id |
|---|
| 1 |
| 3 |
Write a query to retrieve the list of unique worker IDs who logged in between January 10th and January 25th, 2023.
user_logins table:
| Column Name | Description |
|---|---|
| id | Unique identifier for each login |
| worker_id | Worker who logged in |
| login_timestamp | Time the worker logged in |
| worker_id |
|---|
| 1 |
| 3 |
| 4 |
| 4 |