Computer Science, asked by daryll5560, 9 months ago

write command sequence to add a column to the left side in an existing table

Answers

Answered by hemalathackjnv
8

Answer:

First, you specify the table name after the ALTER TABLE clause. Second, you put the new column and its definition after the ADD COLUMN clause. Note that COLUMN keyword is optional so you can omit it. Third, MySQL allows you to add the new column as the first column of the table by specifying the FIRST keyword

Answered by umangagarwal12346
2

Answer:

First, you specify the table name after the ALTER TABLE clause. Second, you put the new column and its definition after the ADD COLUMN clause. Note that COLUMN keyword is optional so you can omit it. Third, MySQL allows you to add the new column as the first column of the table by specifying the FIRST keyword

Explanation:

Similar questions