
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add Columns to an Existing MySQL Table
By using ALTER command we can add columns to an existing table.
Syntax
Alter table table-name ADD (column-name datatype);
Example
In the example below, with the help of ALTER Command, column ‘GRADE’ is added to the table ‘Student’.
mysql> Alter table Student ADD (Grade Varchar(10)); Query OK, 5 rows affected (1.05 sec) Records: 5 Duplicates: 0 Warnings: 0
Advertisements