Example & Tutorial understanding programming in easy ways.

Write query to add new column in the table.

We use ALTER command to do this


Syntax:

ALTER TABLE table_name

ADD COLUMN column_name data_type column_constraints.

Read More →