在pymysql中将字符串转换为int时出错

时间:2019-05-24 15:20:43

标签: pymysql

我正在尝试将字符串输入转换为整数,以便可以在sql查询中使用它,并且得到此确切错误 ValueError(“以10为底的int()无效文字:”“)

我的代码是:

def findSimilarArticles(articleId,n):
    con=connection()
    cur=con.cursor()
    num1=int(articleId)
    sql_query='''SELECT articles.id, articles.summary 
                 from articles 
                 where articles.id=%s'''
    cur.execute(sql_query,(num1))
    results=cur.fetchall()
    return(results)

0 个答案:

没有答案