Unfortunately, this is not possible in CE SQL Server. You will need to create a new column and then delete the old one. If you have data in a column, you need to transfer this to your new column. If you want to do this using the sql statement, try something like this:
ALTER TABLE myTable ADD newColumn newType
UPDATE myTable SET newColumn = oldColumn
ALTER TABLE myTable DROP COLUMN oldColumn