Skip to content

ruchi20788/sql-payroll-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 

Repository files navigation

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

About

Employee Payroll Management System using MySQL

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors