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?
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?
Create a free account to access the full topic