Equivalent of MSSQL IDENTITY Column in MySQL

前端 未结 2 560
太阳男子
太阳男子 2020-12-03 17:00

What is the equivalent of MSSQL IDENTITY Columns in MySQL? How would I create this table in MySQL?

CREATE TABLE Lookups.Gender
(
    GenderID            


        
2条回答
  •  无人及你
    2020-12-03 17:18

    CREATE TABLE `Persons` (
      `ID` int(11) NOT NULL AUTO_INCREMENT,
      `LastName` varchar(255) NOT NULL,
      `FirstName` varchar(255) DEFAULT NULL,
      `Address` varchar(255) DEFAULT NULL,
      `City` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`ID`)
    ) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=latin1;
    

    This above example uses the AUTO_INCREMENT syntax. You can specify a starting offset specific to the table.

    The Increment, however, has to be set globally.

    SET @@auto_increment_increment=10;

    You can also set a global default for the offset like follows:

    SET @@auto_increment_offset=5;

    To view your current values, type SHOW VARIABLES LIKE 'auto_inc%';

提交回复
热议问题