I wanted to change dataType of column from UUID to int4
ALTER TABLE tableA ALTER COLUMN columnA TYPE int4(32);
But it is giving me an error.
ERROR: type modifier is not allowed for type "int4"
I tried to search on internet and found that I have to use USING but don't know how to use it.