Posts by Fabio Alves Borges Rodrigues • 21 points
1 post
-
2
votes1
answer784
viewsA: Is there any way to change a column from an existing table to "auto increment"?
To create an auto increment field, it is first necessary that the column data type is INTEGER. See the command below: CREATE TABLE [tabela] ( [ID] INTEGER PRIMARY KEY AUTOINCREMENT ); To change a…