SQL Auto Increment
SQL Auto Increment allows a uniqe number to be generated automatically when a new record created into the database table. This is usually the primary key field that we would like to be created automatically every time a new record is added in table. The keyword AUTOINCREMENT can only be used with the INTEGER datatype field. Syntax CREATE TABLE tablename( column1 INTEGER AUTO_INCREMENT, column2…
View On WordPress












