我正在学习SQL并尝试构建一个脚本,该脚本将使用一些基本的公司信息更新数据库。
以下是我已经获得的查询
QUERY:
query = "UPDATE companies SET URL = '{}', Industry = '{}', Address = '{}', City = '{}', State = '{}', Country = '{}', Type = '{}', Year_Founded = {} WHERE Name = '{}') VALUES (\'{}\',{},\'{}\',\'{}\',\'{}\',\'{}\',\'{}\',{},\'{}\')".format(URL,Industry,Address,City,State,Country,Type,Year_Founded,Company_Name)
ERROR:
IndexError: tuple index out of range
指数:
insert1(company,URL,data[1],data[3],data[4],data[5],data[7],data[0],data[9])
问题:
query
放在多行上?最好的方法是什么?['Google','google.com','','','','','','','','','','']