1
Reply

What is the use of the DROP option in the ALTER TABLE command?

Pradeep

Pradeep

15y
5.2k
0
Reply

    Drop option in the ALTER TABLE command is used to delete the Constraints on the table or delete column in the table.
    Example:-
    Alter table <table-name> drop constraint <
    constraint name>

    Alter table <table-name> drop column <column name>