Computer Science, asked by samarthupadhyay1740, 5 months ago

Which command is used to modify the column of the table

Answers

Answered by SAMEERSAHIB
3

Answer:

SQL ALTER TABLE command

Explanation:

The SQL ALTER TABLE command is used to add, delete or modify columns in an existing table. You should also use the ALTER TABLE command to add and drop various constraints on an existing table.

source: internet

Answered by DeenaMathew
0

The command that is used to modify the column of the table is "SQL ALTER TABLE"

Detailed answer

This is used to modify the pre-existing column of the table or modify a table when it is getting created.

  • This command is also used for many other functions that are in a way modifying that is deleting or adding more columns in a pre-existing or already created table.
  • We can change the details and the names of the content present in a column with this command.
  • Syntax- ADD column_name datatype

Similar questions