This project focuses on cleaning and analyzing raw employee data using SQL. The dataset contained inconsistencies such as missing values, duplicate records, and formatting issues.
- Removed extra spaces using TRIM()
- Standardized text using LOWER() and UPPER()
- Handled NULL values using IFNULL()
- Fixed invalid salary values (negative values)
- Removed duplicate records using self join
- Department-wise average salary
- City-wise employee distribution
- Highest salary identification
- Salary categorization using CASE statement
- Department 1 has higher average salary compared to others
- Majority of employees are located in MUMBAI
- Data cleaning improved data consistency and reliability
- MySQL
- Git & GitHub