Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
please any body knows answer for this question please help me..


thanks in advance...
Posted
Updated 12-Aug-14 0:45am
v7

1 solution

You can have multiple queries inside a single MySQL stored procedure

SQL
DELIMITER $$
CREATE PROCEDURE procedureName()
BEGIN
  -- Query 1
  -- Query 2
  -- Query 3
END $$
DELIMITER ;
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900