I'm looking for the equivalent of the query below for bit data types
Sql("ALTER TABLE Table_name ALTER COLUMN column INTEGER NOT NULL");
Thanks
I'm looking for the equivalent of the query below for bit data types
Sql("ALTER TABLE Table_name ALTER COLUMN column INTEGER NOT NULL");
Thanks
You probably mean:
Sql("ALTER TABLE Table_name ALTER COLUMN column BIT NOT NULL");