使用内连接的python mysql更新

时间:2018-04-29 11:37:24

标签: python mysql pymysql

此查询在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)

1 个答案:

答案 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
 }
}