1. <legend id='gdiFA'><style id='gdiFA'><dir id='gdiFA'><q id='gdiFA'></q></dir></style></legend>
      • <bdo id='gdiFA'></bdo><ul id='gdiFA'></ul>
    2. <small id='gdiFA'></small><noframes id='gdiFA'>

      <tfoot id='gdiFA'></tfoot>

      <i id='gdiFA'><tr id='gdiFA'><dt id='gdiFA'><q id='gdiFA'><span id='gdiFA'><b id='gdiFA'><form id='gdiFA'><ins id='gdiFA'></ins><ul id='gdiFA'></ul><sub id='gdiFA'></sub></form><legend id='gdiFA'></legend><bdo id='gdiFA'><pre id='gdiFA'><center id='gdiFA'></center></pre></bdo></b><th id='gdiFA'></th></span></q></dt></tr></i><div id='gdiFA'><tfoot id='gdiFA'></tfoot><dl id='gdiFA'><fieldset id='gdiFA'></fieldset></dl></div>
    3. 合并来自两个不同数据库的表 - sqlite3/Python

      时间:2023-08-20
    4. <legend id='53DQ7'><style id='53DQ7'><dir id='53DQ7'><q id='53DQ7'></q></dir></style></legend>
      <tfoot id='53DQ7'></tfoot>

          <bdo id='53DQ7'></bdo><ul id='53DQ7'></ul>
                <tbody id='53DQ7'></tbody>
            • <small id='53DQ7'></small><noframes id='53DQ7'>

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

                本文介绍了合并来自两个不同数据库的表 - sqlite3/Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我有两个不同的 SQLite 数据库 XXX 和 YYY.XXX 包含表 A 和 YYY 分别包含表 B.A 和 B 具有相同的结构(列).如何在 Python - SQLite API 中附加 A 中的 B 行.追加 A 后包含 A 行和 B 行.

                I have two different SQLite databases XXX and YYY. XXX contains table A and YYY contains B respectively. A and B have same structure(columns). How to append the rows of B in A in Python - SQLite API. After appending A contains rows of A and rows of B.

                推荐答案

                您首先使用 sqlite3.connect 获得到数据库的连接,然后创建一个游标,以便您可以执行 sql.有了游标,就可以执行任意的sql命令了.

                You first get a connection to the database using sqlite3.connect, then create a cursor so you can execute sql. Once you have a cursor, you can execute arbitrary sql commands.

                示例:

                import sqlite3
                
                # Get connections to the databases
                db_a = sqlite3.connect('database_a.db')
                db_b = sqlite3.connect('database_b.db')
                
                # Get the contents of a table
                b_cursor = db_b.cursor()
                b_cursor.execute('SELECT * FROM mytable')
                output = b_cursor.fetchall()   # Returns the results as a list.
                
                # Insert those contents into another table.
                a_cursor = db_a.cursor()
                for row in output:
                    a_cursor.execute('INSERT INTO myothertable VALUES (?, ?, ...etc..., ?, ?)', row)
                
                # Cleanup
                db_a.commit()
                a_cursor.close()
                b_cursor.close()
                

                警告:我还没有真正测试过这个,所以它可能有一些错误,但我认为基本的想法是合理的.

                Caveat: I haven't actually tested this, so it might have a few bugs in it, but the basic idea is sound, I think.

                这篇关于合并来自两个不同数据库的表 - sqlite3/Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:使用 MySQL C API 和 C++ 获取 MySQL 数据库表中的行 下一篇:拉拉维尔 |唯一验证 where 子句

                相关文章

                最新文章

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

                1. <tfoot id='GjNwA'></tfoot>

                    <bdo id='GjNwA'></bdo><ul id='GjNwA'></ul>

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

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