This commit is contained in:
dsyoon
2023-07-18 01:19:10 +09:00
parent 617e9b0ddf
commit d858053ae5

View File

@@ -23,11 +23,6 @@ class StockPriceDirectionAnalyzer:
def get_all_stock_code(self):
self.open()
sql = "SELECT distinct code FROM stock"
self.cursor.execute(sql)
rows = self.cursor.fetchall()
sql = "SELECT distinct code, name FROM stock"
self.cursor.execute(sql)
rows = self.cursor.fetchall()