Skip to content

Latest commit

Β 

History

History
39 lines (28 loc) Β· 976 Bytes

File metadata and controls

39 lines (28 loc) Β· 976 Bytes

SQL Payroll System

Employee Payroll Management System built using MySQL. This project demonstrates database design, table relationships, and SQL queries for managing employee payroll information.

πŸ“‚ Database Tables

  • departmentp – Stores department details
  • employeep – Stores employee information
  • salaryp – Stores salary, bonus, and deduction details
  • attendencep – Stores employee attendance records

βš™οΈ Features

  • Manage employee and department data
  • Track salary, bonus, and deductions
  • Track employee attendance
  • Generate payroll reports using SQL queries
  • Perform data analysis using JOIN, GROUP BY, and aggregate functions

πŸ›  Technologies Used

  • MySQL
  • SQL
  • MySQL Workbench

πŸ“Š Example Query

SELECT e.ename, d.dname, s.sal,
(s.sal + s.bonus - s.deduction) AS total_salary
FROM employeep e
JOIN departmentp d ON e.did = d.did
JOIN salaryp s ON e.eid = s.eid;

πŸ“Œ Author

Ruchita Pethe