How to add a not null to an already existing column in SQL Server?
This question already has an answer here:
指定列的数据类型
ALTER TABLE [Table] ALTER COLUMN [Column] INTEGER NOT NULL;
alter table movie_archive alter column RecordID INTEGER Not null;
链接地址: http://www.djcxy.com/p/76272.html