Answers for "how to update a table type attribute in mysql"

SQL
6

alter table column change data type to text mysql

ALTER TABLE tablename MODIFY columnname INTEGER;
Posted by: Guest on September-12-2020
15

add column in mysq

ALTER TABLE Table_name
ADD Email varchar(255);
Posted by: Guest on March-10-2020

Code answers related to "how to update a table type attribute in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language