I have a .sql file that I just want to read into a Pandas dataframe in Jupyter Notebook. With CSV files, I just had to upload the file and create a dataframe using something like this:
df = pd.read_csv('file.csv')
I gather that my SQL file needs to be served using a database application like MySQL. Perhaps there's some way to host the .sql file locally? I don't need to do any database manipulation - I just want to read the table values.