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
I can modify the table field's datatype, with these following query: and also in the Oracle DB,
ALTER TABLE table_name MODIFY column_name datatype;