alter table table1 modify(id not null , name not null, QQ not null);

解决方案 »

  1.   

    alter table table1 alter column id int not null 
    alter table table1 alter column name char(6) not null 
    alter table table1 alter column QQ varchar(10) not null
      

  2.   

    回:宋烨 ,default怎么设置,,
    回:nboys,我是要一条语句,你这个要用三个go的,
      

  3.   

    alter table table_name modify(id int not null , name char(10) not null, QQ varchar(20) not null);