Computer scienceFundamentalsSQL and DatabasesBasics SQLData Modification Language

Sequences

AUTO_INCREMENT

Report a typo

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?

Select one option from the list
___

Create a free account to access the full topic