django中使用SQL原生语句如何动态插入变量

我用python写了一段代码用于批量插入数据库出错,如何解决,伪代码:

from django.db import connection
...

cursor = connection.cursor() 
cursor.execute("Insert into api_coupon(Quan_surplus,Quan_receive,) values ("+d['Quan_surplus']+","+d['Quan_receive']+") on duplicate key update Quan_receive="+d['Quan_receive']+",Quan_surplus="+d['Quan_surplus'])

cursor.close()

...

请教下
1、以上sql语句中变量的拼接是否正确,如果不正确该如何拼接
2、错误提示TypeError: coercing to Unicode: need string or buffer, int found ,请问如何解决~!

阅读 7k
1 个回答

clipboard.png

用%s格式化query语句

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏