13

IDとqSQLの2つの列を持つTBLTESTという名前のMySQLテーブルがあります。各qSQLにはSQLクエリが含まれています。

別のテーブルFACTRESTTBLがあります。

テーブルTBLTESTには10行あります。

たとえば、On TBLTESTでは、id=4およびqSQL="select id、city、statefromABC"とします。

Pythonを使用してTBLTESTからFACTRESTTBLに挿入するにはどうすればよいですか?辞書を使用している可能性がありますか?

どうも!

4

1 に答える 1

25

Python用のMySQLdbを使用できます。

サンプルコード(ここでは実行する方法がないため、デバッグする必要があります):

#!/usr/bin/python

import MySQLdb

# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )

# prepare a cursor object using cursor() method
cursor = db.cursor()

# Select qSQL with id=4.
cursor.execute("SELECT qSQL FROM TBLTEST WHERE id = 4")

# Fetch a single row using fetchone() method.
results = cursor.fetchone()

qSQL = results[0]

cursor.execute(qSQL)

# Fetch all the rows in a list of lists.
qSQLresults = cursor.fetchall()
for row in qSQLresults:
    id = row[0]
    city = row[1]

    #SQL query to INSERT a record into the table FACTRESTTBL.
    cursor.execute('''INSERT into FACTRESTTBL (id, city)
                  values (%s, %s)''',
                  (id, city))

    # Commit your changes in the database
    db.commit()

# disconnect from server
db.close()
于 2013-02-13T23:21:50.373 に答える