Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Find Active Chegg Study Users

EasySQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Find Active Chegg Study Users. Start with the requirements and the one table on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

You are given a table of Chegg Study user activity. Write a SQL query to return each user_id and email for users whose status is 'active' and who have completed more than 3 study sessions. Sort the results by study_sessions_completed in descending order, and then by user_id in ascending order.

Schema

chegg_study_users
ColumnTypeDescription
user_idPKINTUnique user identifier
emailVARCHAR(255)User email address
statusVARCHAR(20)Account status
study_sessions_completedINTNumber of completed study sessions
signup_dateDATEDate the user signed up
Tableschegg_study_users
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results