I'm trying to insert values to a table and getting this error message,
Cannot insert a value NULL into column "RowID".
Do I have to find the last RowID
value in the table and manually input every time I do an insert like the insert below?
insert into table1 (RowID, Name, Gender) values (801, John, Male)
Is there a way to insert like:
insert into table1 (RowID, Name, Gender) values (AutoInputRowID, John, Male)