Employee Management System - SQL Database with Triggers & Stored Procedures
SQL-Based Employee Management System SQL-Based Employee Management System I designed and implemented an SQL-based Employee Management System that automates employee record handling using triggers and stored procedures . This project ensures that every new employee entry is logged in an audit table, maintaining data integrity and historical tracking. Key Features: ✅ Employee Table – Stores essential details like name, position, salary, and hire date. ✅ Audit Table – Automatically records employee changes with timestamps for tracking modifications. ✅ Trigger for Data Auditing – A SQL trigger (AFTER INSERT) ensures that all new employee records are mirrored in the audit table. ✅ Stored Procedure for Employee Addition – Simplifies employee insertion while enforcing consistency. Technologies Used: SQL (MySQL / PostgreSQL) Triggers & ...