0

我的 SQL 中有两个表。表 1 包含许多数据,但表 2 包含大量数据。

这是我使用 Python 实现的代码

import MySQLdb

db = MySQLdb.connect(host = "localhost", user = "root", passwd="", db="fak")
cursor = db.cursor()

#Execute SQL Statement:
cursor.execute("SELECT invention_title FROM auip_wipo_sample WHERE invention_title IN (SELECT invention_title FROM us_pat_2005_to_2012)")

#Get the result set as a tuple:
result = cursor.fetchall()

#Iterate through results and print:
for record in result:
    print record
print "Finish."

#Finish dealing with the database and close it
db.commit()
db.close()

然而,这需要很长时间。我已经运行 Python 脚本 1 小时,但它仍然没有给我任何结果。

请帮我。

4

1 回答 1

0

您在两个表中都有关于invention_title 的索引吗?如果没有,则创建它:

ALTER TABLE auip_wipo_sample ADD KEY (`invention_title`);
ALTER TABLE us_pat_2005_to_2012 ADD KEY (`invention_title`);

然后将您的查询组合成一个不使用子查询的查询:

SELECT invention_title FROM auip_wipo_sample 
INNER JOIN us_pat_2005_to_2012 ON auip_wipo_sample.invention_title = us_pat_2005_to_2012.invention_title

让我知道你的结果。

于 2013-05-19T08:12:24.553 回答