I have a list of tuples, where every tuple element belongs to a particular column, for example:
[("mike",19,"graduate"),("niko",22,"software engineer")....]
model/table:
Name | Age | occupation
how do I insert every tuple into a table (I have the required model created already). Just don't know how to insert into the database.
Please help and forgive me if I come off as an amateur. I am a beginner.