Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Find Active Chegg Study Users
00:00
5 left

Find Active Chegg Study Users

EasySQL · PostgreSQL

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
Interviewer

Your question is Find Active Chegg Study Users. Start with the requirements and the one table in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.