CREATE TABLE computer(
serial_number INT AUTO_INCREMENT,
manufacturer VARCHAR(30),
cpu_model VARCHAR(30)
);
Which of the following SQL statements will change the initial value of the sequence to 50?
CREATE TABLE computer(
serial_number INT AUTO_INCREMENT,
manufacturer VARCHAR(30),
cpu_model VARCHAR(30)
);
Which of the following SQL statements will change the initial value of the sequence to 50?
Create a free account to access the full topic