Cursor Objects — PyMySQL 0.7.2 documentation https://pymysql.readthedocs.io/en/latest/modules/cursors.html#pymysql.cursors.Cursor.executemany executemany(query, args) Run several data against one query Parameters: query – query to execute on server a
代码: sql = """INSERT INTO video_info(video_id, title) VALUES("%s","%s")""" % (video_info["id"],video_info["title"]) 问题: pymysql.err.ProgrammingError: (1064, 'You have an error in your SQ