visit
First of all what is Stored Procedure?
A stored procedure is a prepared SQL code that you can save, so the code can be reused over and over again.You can pass parameters to the stored procedure to get data based on Dynamic values.Without Parameters
`GerUsers`() DETERMINISTIC CONTAINS SQL SQL SECURITY DEFINER BEGIN * From users; END
With Parameters
`GetUserByEmail`( `uEmail` (255)) DETERMINISTIC CONTAINS SQL SQL SECURITY DEFINER BEGIN * from users where email = uEmail; END
List of Stored Procedure
Click on Execute link to Run Specific Stored Procedure.
Procedure without parameters will directly Run Query and list out the data Procedure parameters will open Pop up to add parameters, then Run Procedure and get result data.That’s it. Hope this article helps you guys to understand how to mange Stored Procedure Using PHP My Admin. In the Next article I will explain how to Execute