我正试图在我的一个服务器上做一个
SQL injection
。
我正在使用命令。
cursor.execute("select * from some_table")
来执行我服务器中的SQL命令。
但是否有办法使用同一个execute()
函数来执行多个命令。
I tried :
cursor.execute("select * from some_table ; INSERT INTO ...")
DBMS is mariadb