how to connect to remote database mysql from jupyter notebook code example
Example: how to connect mysql database in jupyter notebook
# %%
%load_ext sql
# %%
%sql mysql+mysqldb://<user>:<password>@localhost/<dataBase>
# %%
%%sql
SELECT *
FROM <table>;