It is an important requirement that a field in SQL be unique. This is the "Primary Key". A unique field can be made auto-increment by classic SQL methods. When we define two columns as keys in sql, ...
cursor.execute('INSERT INTO students (student_id, student_name) VALUES (1, "Lalith Kumar");') cursor.execute('INSERT INTO students (student_id, student_name) VALUES ...