How to add column in mysql table

Add a column to an existing MySQL table.
Syntax:
ALTER TABLE table_name
ADD column_name datatype

Example:
Alter table country add Pincode int;

Post a Comment

0 Comments