how to insert multiple rows in mysql using stored procedure

Solutions on MaxInterview for how to insert multiple rows in mysql using stored procedure by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "how to insert multiple rows in mysql using stored procedure"
Vincenzo
30 May 2017
1INSERT INTO tbl_name
2    (a,b,c)
3VALUES
4    (1,2,3),
5    (4,5,6),
6    (7,8,9);