Computer scienceFundamentalsSQL and DatabasesBasics SQLData Modification Language

Sequences

Serial_number

Report a typo

CREATE TABLE computer(
serial_number INT AUTO_INCREMENT,
manufacturer VARCHAR(30),
cpu_model VARCHAR(30)
);
ALTER TABLE Computer AUTO_INCREMENT = 45;

What will be the initial value of serial_number?

Enter a number
___

Create a free account to access the full topic