<legend id='38RpI'><style id='38RpI'><dir id='38RpI'><q id='38RpI'></q></dir></style></legend>

      <i id='38RpI'><tr id='38RpI'><dt id='38RpI'><q id='38RpI'><span id='38RpI'><b id='38RpI'><form id='38RpI'><ins id='38RpI'></ins><ul id='38RpI'></ul><sub id='38RpI'></sub></form><legend id='38RpI'></legend><bdo id='38RpI'><pre id='38RpI'><center id='38RpI'></center></pre></bdo></b><th id='38RpI'></th></span></q></dt></tr></i><div id='38RpI'><tfoot id='38RpI'></tfoot><dl id='38RpI'><fieldset id='38RpI'></fieldset></dl></div>

      <small id='38RpI'></small><noframes id='38RpI'>

      <tfoot id='38RpI'></tfoot>

        • <bdo id='38RpI'></bdo><ul id='38RpI'></ul>
      1. 使用 INSERT INTO table ON DUPLICATE KEY 时出错,使用

        时间:2023-08-22

          • <i id='kPjoJ'><tr id='kPjoJ'><dt id='kPjoJ'><q id='kPjoJ'><span id='kPjoJ'><b id='kPjoJ'><form id='kPjoJ'><ins id='kPjoJ'></ins><ul id='kPjoJ'></ul><sub id='kPjoJ'></sub></form><legend id='kPjoJ'></legend><bdo id='kPjoJ'><pre id='kPjoJ'><center id='kPjoJ'></center></pre></bdo></b><th id='kPjoJ'></th></span></q></dt></tr></i><div id='kPjoJ'><tfoot id='kPjoJ'></tfoot><dl id='kPjoJ'><fieldset id='kPjoJ'></fieldset></dl></div>
              <tbody id='kPjoJ'></tbody>

              <tfoot id='kPjoJ'></tfoot>
                <legend id='kPjoJ'><style id='kPjoJ'><dir id='kPjoJ'><q id='kPjoJ'></q></dir></style></legend>

                <small id='kPjoJ'></small><noframes id='kPjoJ'>

                • <bdo id='kPjoJ'></bdo><ul id='kPjoJ'></ul>
                • 本文介绍了使用 INSERT INTO table ON DUPLICATE KEY 时出错,使用 for 循环数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用 pyspark 框架更新 mysql 数据库,并在 AWS Glue 服务上运行.

                  I am working on updating a mysql database using pyspark framework, and running on AWS Glue services.

                  我有一个如下的数据框:

                  I have a dataframe as follows:

                  df2= sqlContext.createDataFrame([("xxx1","81A01","TERR NAME 55","NY"),("xxx2","81A01","TERR NAME 55","NY"),("x103","81A01","TERR NAME 01","NJ")], ["zip_code","territory_code","territory_name","state"])
                  
                  # Print out information about this data
                  df2.show()
                  +--------+--------------+--------------+-----+
                  |zip_code|territory_code|territory_name|state|
                  +--------+--------------+--------------+-----+
                  |    xxx1|         81A01|  TERR NAME 55|   NY|
                  |    xxx2|         81A01|  TERR NAME 55|   NY|
                  |    x103|         81A01|  TERR NAME 01|   NJ|
                  +---------------------------------------------
                  

                  我有一个主键 ZIP_CODE,我需要确保没有重复键或主键异常,因此我使用 INSERT INTO .... ON DUPLICATE KEYS.

                  I have a primary key ZIP_CODE, and I need to ensure, there is no duplicate keys, or primary key exceptions, and hence am using INSERT INTO .... ON DUPLICATE KEYS.

                  而且由于我有不止一行要插入/更新,所以我在 python 中使用了数组来循环记录,并对数据库执行 INSERT.代码如下:

                  And since I have more than one rows to insert/update, I have used for array in python to loop through the records, and perform INSERT into database. The code is as follows:

                  sarry = df2.collect()
                  for r in sarry:
                       db = MySQLdb.connect("xxxx.rds.amazonaws.com", "username", "password", 
                        "databasename")
                       cursor = db.cursor()
                       insertQry=INSERT INTO ZIP_TERR(zip_code, territory_code, territory_name, 
                       state) VALUES(r.zip_code, r.territory_code, r.territory_name, r.state) ON 
                       DUPLICATE KEY UPDATE territory_name = VALUES(territory_name), state = 
                       VALUES(state);"
                       n=cursor.execute(insertQry)
                       db.commit()
                       db.close()
                  

                  在运行上述插入查询函数时,我收到以下错误消息,无法获得有关错误的任何线索.请帮忙.

                  When running the above insert query function, I am getting the following error message, couldn't get any clue on the error. Please help.

                  Traceback (most recent call last):
                    File "/tmp/zeppelin_pyspark-2291407229037300959.py", line 367, in <module>
                      raise Exception(traceback.format_exc())
                  Exception: Traceback (most recent call last):
                    File "/tmp/zeppelin_pyspark-2291407229037300959.py", line 360, in <module>
                      exec(code, _zcUserQueryNameSpace)
                    File "<stdin>", line 8, in <module>
                    File "/usr/local/lib/python2.7/site-packages/pymysql/cursors.py", line 170, in execute
                      result = self._query(query)
                    File "/usr/local/lib/python2.7/site-packages/pymysql/cursors.py", line 328, in _query
                      conn.query(q)
                    File "/usr/local/lib/python2.7/site-packages/pymysql/connections.py", line 893, in query
                      self._affected_rows = self._read_query_result(unbuffered=unbuffered)
                    File "/usr/local/lib/python2.7/site-packages/pymysql/connections.py", line 1103, in _read_query_result
                      result.read()
                    File "/usr/local/lib/python2.7/site-packages/pymysql/connections.py", line 1396, in read
                      first_packet = self.connection._read_packet()
                    File "/usr/local/lib/python2.7/site-packages/pymysql/connections.py", line 1059, in _read_packet
                      packet.check_error()
                    File "/usr/local/lib/python2.7/site-packages/pymysql/connections.py", line 384, in check_error
                      err.raise_mysql_exception(self._data)
                    File "/usr/local/lib/python2.7/site-packages/pymysql/err.py", line 109, in raise_mysql_exception
                      raise errorclass(errno, errval)
                  InternalError: (1054, u"Unknown column 'r.zip_code' in 'field list'")
                  

                  如果我只是尝试打印一行的值,则会按如下方式打印值:

                  If i simply try to print the values for one row, am getting the values printed as follows:

                  print('zip_code_new: ', r.zip_code, r.territory_code, r.territory_name, r.state)
                  
                  zip_code_new:  xxx1 81A01 TERR NAME 55 NY
                  

                  谢谢.我正在研究 AWS Glue/Pyspark,所以我需要使用原生 Python 库.

                  Thanks. I am working on AWS Glue/Pyspark, so I need to use native python libraries.

                  推荐答案

                  以下插入查询有效,带有 for 循环.

                  The following insert query works, with a for loop.

                  insertQry="INSERT INTO ZIP_TERR(zip_code, territory_code, territory_name, state) VALUES(%s, %s, %s, %s) ON DUPLICATE KEY UPDATE territory_name = %s, state = %s;
                  
                  n=cursor.execute(insertQry, (r.zip_code, r.territory_code, r.territory_name, r.state, r.territory_name, r.state))
                  print (" CURSOR status :", n)
                  

                  结果输出:

                  CURSOR status : 2
                  

                  谢谢.希望对大家有所参考.

                  Thanks. Hope this will be of reference to others.

                  这篇关于使用 INSERT INTO table ON DUPLICATE KEY 时出错,使用 for 循环数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Spark SQL 和 MySQL- SaveMode.Overwrite 不插入修改的数据 下一篇:spark从mysql并行读取数据

                  相关文章

                  最新文章

                  <small id='NhzvA'></small><noframes id='NhzvA'>

                • <tfoot id='NhzvA'></tfoot>
                    <bdo id='NhzvA'></bdo><ul id='NhzvA'></ul>

                  1. <i id='NhzvA'><tr id='NhzvA'><dt id='NhzvA'><q id='NhzvA'><span id='NhzvA'><b id='NhzvA'><form id='NhzvA'><ins id='NhzvA'></ins><ul id='NhzvA'></ul><sub id='NhzvA'></sub></form><legend id='NhzvA'></legend><bdo id='NhzvA'><pre id='NhzvA'><center id='NhzvA'></center></pre></bdo></b><th id='NhzvA'></th></span></q></dt></tr></i><div id='NhzvA'><tfoot id='NhzvA'></tfoot><dl id='NhzvA'><fieldset id='NhzvA'></fieldset></dl></div>

                    <legend id='NhzvA'><style id='NhzvA'><dir id='NhzvA'><q id='NhzvA'></q></dir></style></legend>