此查询在PyMysql
中无效,我似乎无法找到问题。
query = """UPDATE user INNER JOIN identification_card ON user.id = %s SET user.id_type = %s, user.validity = %s"""
data = (identification_card.user_id, identification_card.card_type, identification_card.expiry_date)
cursor.execute(query,data)
答案 0 :(得分:0)
为什么要传递列名而不是值
或者您只需使用值的连接列名称
function isOdd(num) { return num % 2;}
for (var i=0;i<ocument.getElementsByClassName('box').length;i++) {
if(isOdd(i))
{
// Code goes here when i is odd
}
else
{
// Code goes here when i is even
}
}