I have a dataframe that has this info.
University Subject Colour
Melb Math Red
Melb English Blue
Ottawa Arts Green
Ottawa Math Yellow
Sydney Math Black
Sydney Arts Red
there is around 1,000 records in this dataframe
I do not want to insert them one by one through a loop
What I am thinking is to pass the whole Dataframe to a stored procedure with a "data-defined table type" in SQL Server
so I can do the insert in one shot, how to do that?
to_sql()method for dataframes.