w3resource

Execute a Stored Procedure to Archive Employee Records


Call the Stored Procedure to Archive Old Employees

Write a MySQL query to call the ArchiveOldEmployees stored procedure.

Solution:

-- Call the 'ArchiveOldEmployees' stored procedure
-- This will execute the procedure that archives and deletes old employees
CALL ArchiveOldEmployees();

Explanation:

  • Purpose of the Query:
    • The goal is to execute the stored procedure to archive old employees.
  • Key Components:
    • CALL: Executes the stored procedure.
  • Why use Stored Procedures?:
    • Stored procedures simplify complex operations and improve code reusability.
  • Real-World Application:
    • For example, in a HR system, you might call a stored procedure to archive old employees.

For more Practice: Solve these Related Problems:

  • Write a MySQL query to call a stored procedure that moves old customers to an ArchivedCustomers table.
  • Write a MySQL query to call a stored procedure that moves old orders to an ArchivedOrders table.
  • Write a MySQL query to call a stored procedure that moves old products to an ArchivedProducts table.
  • Write a MySQL query to call a stored procedure that moves old projects to an ArchivedProjects table.


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous MySQL Exercise: Create a Stored Procedure to Archive Old Employees.
Next MySQL Exercise: Create a Trigger to Log Employee Deletions.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.