AUTO_INCREMENT with Create Statement

In this, we will look to Create a table and with it, we will mention the “AUTO_INCREMENT” As discussed it will manage the id by itself.

Syntax:

CREATE TABLE table_name (

id INT AUTO_INCREMENT PRIMARY KEY,

–Other columns

);

Example

create table AutoIncrement(
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50),
age INT
);

Now insert some values into it to see whether the id is generating by itself

insert into AutoIncrement(name, age) 
values ("John",20),
("Mark",35),
("Johnson",40);

Output:

id

name

age

1

John

20

2

Mark

35

3

Johnson

40

So we have not given the values for the id column but as we have set the column to AUTO_INCREMENT it will automatically assign the value according to the last value used for the table.

Now we will delete the row with id=3 to see if the table is recalculating the ID:

delete from AutoIncrement where id=3;
select * from AutoIncrement

Output:

id

name

age

1

John

20

2

Mark

35

Now add another row by using the below query and apply the select statement.

insert into AutoIncrement(name, age) 
values ("Watson",20);

select * from AutoIncrement

Output:

id

name

age

1

John

20

2

Mark

35

4

Watson

20

So it is clear from the above query that AUTO_INCREMENT doesn’t take the last ID from the database but it will take the ID based on the last inserted ID.

We can also change the AUTO_INCREMENT starting value other than 1 by using giving AUTO_INCREMENT = value property.

How to Create id with AUTO_INCREMENT in MySQL?

In all tables, we always have a primary key which is used to identify rows uniquely. For that, we generally use integers as a type of column. When adding each row, we assign a new integer to it. Whenever we insert a new row, we don’t want to manually get the last integer and use it in the INSERT query. Instead, we want an option that can automatically generate a new ID every time we try to insert it.

Similar Reads

Solutions for AUTO_INCREMENT IDs in MySQL

So we have some common solutions with some built-in functions and some with procedures(Triggers) that we will create. Let’s first understand them....

1. AUTO_INCREMENT with Create Statement

In this, we will look to Create a table and with it, we will mention the “AUTO_INCREMENT” As discussed it will manage the id by itself....

2. AUTO_INCREMENT with Alter Statement

Now let’s say we have a table that was created without AUTO_INCREMENT. We can use the ALTER statement to add it....

3. Create AUTO_INCREMENT Id Without Trigger

so now we won’t Auto_Increment with column. But we will mimic this behavior with triggers. The trigger will automatically be called when an insert query is applied....

Conclusion

So, Using this approach we can create a column with auto increment. This helps when we want to create a record from our backend API or service. At that time we reduce our Database calls because we don’t have to worry much about the last id. Also, it will remove the chances of any mismatch with the already present ID....

Contact Us