Example & Tutorial understanding programming in easy ways.

How we can add a new column in the table ?

Using ALTER statement we can do this like:


ALTER TABLE TABLE_NAME ADD COLUMN COLUMN_NAME DATA TYPE SIZE;

Read More →