How to set an AUTO_INCREMENT field with to start with the value 6000 in mysql?

后端 未结 3 1638
清酒与你
清酒与你 2021-02-19 11:11

How to set a field auto increment without auto increment key in mysql or how set a field auto increment with start value 6000 in mysql?

3条回答
  •  心在旅途
    2021-02-19 11:47

    mysql will show you the correct syntax for this, and more, if you execute the following for a table that contains an auto increment PK & some data already:

    SHOW CREATE TABLE your_tablename;
    

提交回复
热议问题