Example & Tutorial understanding programming in easy ways.

What is DROP command in SQL?

We use DROP command to do the following:


-To DROP the table.

-To DROP some column of the table.


DROP table:

Syntax:

DROP TABLE table_name;


DROP column:

Syntax:

ALTER TABLE table_name

DROP COLUMN column_name;

Read More →