I have SQL Server database and I just realized that I can change the type of one of the columns from int to bool.
int
bool
How can I do that withou
ALTER TABLE tablename ALTER COLUMN columnname columndatatype(size)
Note: if there is a size of columns, just write the size also.