Skip to content

Instantly share code, notes, and snippets.

View s7yby02's full-sized avatar
🎯
Focusing

Ayoub ELHARRAN s7yby02

🎯
Focusing
View GitHub Profile
@mindyng
mindyng / app_session.sql
Last active December 12, 2024 13:34
TestDome SQL Practice Q's
/*App usage data are kept in the following table:
TABLE sessions
id INTEGER PRIMARY KEY,
userId INTEGER NOT NULL,
duration DECIMAL NOT NULL
Write a query that selects userId and average session duration for each user who has more than one session.*/
-- Example case create statement: