Answers for "mysql id number auto increment"

SQL
6

mysql set id auto increment

ALTER TABLE users AUTO_INCREMENT=1001;
Posted by: Guest on August-31-2020
0

create table mysql example auto_increment

Copied
CREATE TABLE animals (
     id MEDIUMINT NOT NULL AUTO_INCREMENT,
     name CHAR(30) NOT NULL,
     PRIMARY KEY (id)
);

INSERT INTO animals (name) VALUES
    ('dog'),('cat'),('penguin'),
    ('lax'),('whale'),('ostrich');

SELECT * FROM animals;
Posted by: Guest on November-05-2021

Code answers related to "mysql id number auto increment"

Code answers related to "SQL"

Browse Popular Code Answers by Language