As far as I know, we can change the type of column in MySQL, like
ALTER TABLE t1 MODIFY b INT NOT NULL;
I'm using TDengine, and I have lots of data stored. Now I want to change the type of one column from tinyint
to tinyint unsigned
. I saw some examples in its document for adding/deleting columns.
Does anyone know how to modify the type information of a column?