0% found this document useful (0 votes)
2 views2 pages

Program 9

The document outlines various operations performed using the ALTER TABLE command in MySQL. It includes examples of adding a column, dropping a column, renaming a column, and modifying a column's datatype in a table named 'bca'. Each operation is accompanied by the corresponding SQL command and the result of the query execution.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Program 9

The document outlines various operations performed using the ALTER TABLE command in MySQL. It includes examples of adding a column, dropping a column, renaming a column, and modifying a column's datatype in a table named 'bca'. Each operation is accompanied by the corresponding SQL command and the result of the query execution.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Program 9

Write a program to show all the operation perform by alter


command.
1. ALTER TABLE - ADD Column
 mysql> alter table bca
-> add column last_name varchar(30);
Query OK, 0 rows affected (0.18 sec)
Records: 0 Duplicates: 0 Warnings: 0

 mysql> select * from bca;

2. ALTER TABLE - DROP COLUMN


 mysql> alter table bca
-> drop column marks;
Query OK, 0 rows affected (0.06 sec)
Records: 0 Duplicates: 0 Warnings: 0

 mysql> select * from bca;


3. ALTER TABLE - RENAME COLUMN
 mysql> alter table bca
-> rename column name to first_name;
Query OK, 0 rows affected (0.03 sec)
Records: 0 Duplicates: 0 Warnings: 0

 mysql> select * from bca;

4. ALTER TABLE - ALTER/MODIFY DATATYPE


 mysql> alter table bca
-> modify column roll_no varchar(12);
Query OK, 5 rows affected (0.14 sec)
Records: 5 Duplicates: 0 Warnings: 0

 mysql> desc bca;

You might also like