问题
执行以下程序报错:sqlite3.OperationalError: near “?“
sql_update = 'update images set ? = ? where id = ?'
args = (k, inputs[k], update_id, )
cur.execute(sql_update, args)
其中,args = ('name', 'robin', 2)
不怎么看,怎么改,SQL 语句都没有问题&#