Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Mysql Automatisches Inkrementieren von int ähnlicher Daten

Wie unter Using AUTO_INCREMENT dokumentiert :

Daher könnten Sie Folgendes tun:

CREATE TABLE my_table (
  firstname VARCHAR(31) NOT NULL,
  lastname  VARCHAR(31) NOT NULL,
  counter   BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (lastname, counter)
) Engine=MyISAM;

INSERT INTO my_table
  (firstname, lastname)
VALUES
  ('james', 'smith' ),
  ('terry', 'smith' ),
  ('john' , 'smith' ),
  ('jerry', 'fields'),
  ('tom'  , 'straus')
;

Sehen Sie es auf sqlfiddle .