How is MODIFY used with ALTER query? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How is MODIFY used with ALTER query?

what is the purpose of using it with alter command.

7th Jan 2019, 4:22 PM
Karan Saxena
Karan Saxena - avatar
2 Answers
+ 3
to change data type of an attribute for example an attribute phone_no in a student table ALTER TABLE STUDENT MODIFY(PHONE_NO INTEGER)
7th Jan 2019, 4:34 PM
Ahmad Zaim Hakimin Bin Zamzuri
Ahmad Zaim Hakimin Bin Zamzuri - avatar
0
The ALTER TABLE statement is used to add, delete, or modify columns in an existing table. The ALTER TABLE statement is also used to add and drop various constraints on an existing table. ALTER TABLE table_name ADD column_name datatype; ALTER TABLE Customers ADD Email varchar(255); ALTER TABLE table_name DROP COLUMN column_name; ALTER TABLE Customers DROP COLUMN Email;
9th Jan 2019, 12:44 PM
Akwin Lopez
Akwin Lopez - avatar