Calling several SQL procedures at once with Python – Mysql
I have made a stored procedure in MySQL which accepts several arguments and does its things. And while I have no problem to execute the following query in MySQL CALL my_pr(var1, var2, var3); CALL my_pr(var4, var5, var6); When I try…