only change data type? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

only change data type?

is it possible to change the data type of an existing created table using ALTER TABLE ?

4th Jun 2020, 5:45 PM
Pranav Kp
Pranav Kp - avatar
1 Answer
0
You can change the data type of a column. ALTER TABLE table_name MODIFY column_name new_type;
4th Jun 2020, 6:06 PM
Avinesh
Avinesh - avatar