Computer scienceFundamentalsSQL and DatabasesBasics SQLData Modification Language

Sequences

Initial value

Report a typo

CREATE TABLE employees(
employee_id INT NOT NULL AUTO_INCREMENT,
firstname VARCHAR(30),
lastname VARCHAR(30)
PRIMARY KEY(employee_id)
);
ALTER TABLE employees AUTO_INCREMENT = 30;

What will be the initial value of employee_id?

Enter a number
___

Create a free account to access the full topic