我在python中使用sqlalchemy从AWS MariaDB数据库中提取数据。数据库中的数据每天都在更新。当我查询数据(最后更新日期2016/12/14)时,我只收到数据,直到2016/12/12。遗憾的是,我没有足够的声望点来发布图片,但我确信情况确实如此
有谁知道这可能是什么原因?我是SQL的新手,所以如果这是一个非常愚蠢的问题,请道歉
我正在使用的代码如下:
import pandas as pd
from sqlalchemy import create_engine
connection_details = open('D:\\dbconnect\\connection.txt', 'r').read()[1:-1]
engine = create_engine(connection_details + 'ags_full_carry')
connection = engine.connect()
contract_ts = pd.read_sql_table('LHG17', connection, schema='ags_full_carry', index_col=['Date'])
connection.close()
engine.dispose()
非常感谢提前