mysql语句,留坑时时更新

(1)

delete from student;

(2)在python里面写mysql的语句是,千万千万要留意单引号!!!报错为:

MySQL check the manual that corresponds to your MySQL server version for the right syntax错误

这个错误的意思是,你的mysql语句写错啦,快去检查一下啊

首先,如果table是参数,分开写!!!

sql_update = "update %s"%table
其次,如果用%的话,必须在%s加上单引号变为 ‘%s’,等价于execute里面的逗号,逗号会自动加入单引号,一下为%的格式

sql_update = sql_update+" set image='%s' where url='%s'"% (str(item['image']), item['url'])
tx.execute(sql_update)

喏,这就是逗号的格式

tx.execute(sql_update+" set image=%s where url=%s", (str(item['image']), item['url']))


tx.execute(sql_update+ " set image_urls=%s where url=%s" , ( str (item[ 'image_urls' ]) , item[ 'url' ]))
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值