Example & Tutorial understanding programming in easy ways.

How we delete the existing column from the table?

We use ALTER command to do this:


Syntax:

ALTER TABLE table_name 

DROP COLUMN column_name;

Read More →