https://github.com/shanukatiyar111/sql_project
USER ACTIVITY ANALYSIS USING SQL
https://github.com/shanukatiyar111/sql_project
sql ssms
Last synced: 5 months ago
JSON representation
USER ACTIVITY ANALYSIS USING SQL
- Host: GitHub
- URL: https://github.com/shanukatiyar111/sql_project
- Owner: shanukatiyar111
- Created: 2024-07-17T10:34:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-17T10:45:09.000Z (almost 2 years ago)
- Last Synced: 2025-01-23T11:46:51.291Z (over 1 year ago)
- Topics: sql, ssms
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SQL_PROJECT
DATA-
Utilized 2 tables-
1.LOGINS TABLE - USER_ID ,LOGIN_TIMESTAMP ,SESSION_ID , SESSION_SCORE
2. USERS TABLE- user_id , user_name , user_status
OBJECTIVE -
--This project focuses on analyzing user activity data from two tables,
--`users_id` and `logins`. The goal is to provide valuable insights into user engagement,
--activity patterns, and overall usage trends over time.
ANALYSIS-
--1. Which users did not log in during the past 5 months?
--2. How many users and sessions were there in each quarter, ordered from newest to oldest?
--3. Which users logged in during January 2024 but did not log in during November 2023?
--4. What is the percentage change in sessions from the last quarter?
--5. Which user had the highest session score each day?
--6. Which users have had a session every single day since their first login?
--7. On what dates were there no logins at all?