python ora-01036 illegal variable name number错误

今天做项目 使用python3 在使用的过程中 需要实现sql中插入list 使用 in 的操作

首先使用如下sql语句:

   sql = ""
    sql += "select distinct (stage),eqp_no,fixture_no "
    sql += "from %s " % table_name
    sql += "where serial_no in (%s)"% ",".join(['%s']*len(sn_list))

   cur.execute(sql,sn_list)  //按照网上的说法 是要添加sn_list到参数中
    #cur.execute("select distinct (stage),eqp_no,fixture_no from TB_TESTDATA where serial_no in ('DLC815629XNGJ42A3')")
   df = pd.DataFrame(cur.fetchall(),columns=select_columns)

    cur.close()
    conn.close()

 

运行后没有像网上的说法一样 运行成功,反而报错  ora-01036 illegal variable name number

 

改成如下即可:

select_columns = ["stage","eqp_no","fixture_no"]
    cur = conn.cursor()
    sql = ""
    sql += "select distinct (stage),eqp_no,fixture_no "
    sql += "from %s " % table_name
    sql += "where serial_no in (%s)"
    #% ",".join(['%s']*len(sn_list))
    list_p = ','.join(list(map(lambda x: "'%s'" %x,sn_list)))
    sql = sql % list_p
    #select distinct (stage),eqp_no,fixture_no from TB_TESTDATA where serial_no in (%s,%s,%s)
    print(sql)
    cur.execute(sql)
    #cur.execute("select distinct (stage),eqp_no,fixture_no from TB_TESTDATA where serial_no in ('DLC815629XNGJ42A3')")
    df = pd.DataFrame(cur.fetchall(),columns=select_columns)

    cur.close()
    conn.close()

运行成功 第一次写 做个记录。

你可能感兴趣的:(python3)