MySQL クエリは最大 65535 行 (最大) を返します。制限を超えてテーブルのすべての行を取得するにはどうすればよいですか? (合計 120k)
query_string1 = "SELECT DISTINCT ID FROM table1"
print query_string1
try:
self.cursor.execute(query_string1)
self.ids = self.cursor.fetchall()
print "Select query was successfully executed"
print "%d unique ids where retrieved" %len(self.ids)