Users Who Viewed on First Login Day
Problem
**[Asked at Palantir]**
Palantir's growth team wants to identify highly-engaged new users.
Find all users who visited at least one page **on the same day they first logged in**.
Return `user_id`, ordered ascending.
Tables
Example rows — the live problem includes the full dataset.
users
| user_id | first_login |
|---|
page_views
| view_id | user_id | view_date |
|---|
Expected output
Your answer should return 3 rows with the columns user_id.
Starter code (SQL)
SELECT *
FROM users;Solve this SQL question free
Write SQL and run it instantly in your browser — even on your phone. No signup needed to try.
Solution & explanation
Create a free account to unlock the optimal solution, a step-by-step explanation, and the hidden test cases that grade your answer.
Sign up free to unlock