CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(255) COLLATE utf8_bin NOT NULL,
`password` varchar(255) COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin
AUTO_INCREMENT=1 ;
for example, how to get the primary key id
of the last record that I insert into the table by cursor.execute("insert into ...", ...)
?
after inserting,You can get it as:
cursor.execute('select LAST_INSERT_ID()')
or use cursor.lastrowid