Can I make a field AUTOINCREMENT after made a table? For example, if you create a table like this:
AUTOINCREMENT
create table person(id integer primary key, n
Yes, you can make a column which is autoincrement. Modify the table and add a column. Keep in mind that it is of type INTEGER Primary Key.