Answers for "if an sql column is auto incrementing what do you put in the values() for insert"

SQL
4

sql query to make a existing column auto increment

Alter table table_name modify column_name datatype(length) AUTO_INCREMENT PRIMARY KEY
Posted by: Guest on October-28-2020
0

how to alter auto increment in sql

INSERT INTO Persons (Personid,FirstName,LastName)

VALUES (seq_person.nextval,'Lars','Monsen');
Posted by: Guest on April-06-2021

Code answers related to "if an sql column is auto incrementing what do you put in the values() for insert"

Code answers related to "SQL"

Browse Popular Code Answers by Language