Sorry, I posted this in software development not python.
How do i make an auto-incrementing column? Heres my pseudocode/sql attempt
c.execute('''CREATE TABLE <tableName>
(
<columnName> <auto incrementing??!!>,
<columnName2> text,
<columnName3> text,
<columnName4> text
)
''')