简单SQL,为表中的多个列设置默认值

时间:2013-05-10 14:20:48

标签: sql null

所以我正在做一个班级的作业,我已经坚持了几天这个问题,显然我不像我需要的那样擅长谷歌。

这是: “更改StoreReps表,以便无法在第一个和最后一个中输入NULL值 名称列。“

我的代码(不起作用):

    Alter Table StoreRep Modify lastname Not Null, Modify firstname Not Null;

我的代码(确实有效,但我需要能够同时更改两个列):

    Alter Table StoreRep Modify lastname Not Null;

2 个答案:

答案 0 :(得分:2)

如果您使用的是MySQL,还需要指定类型:

alter table StoreRep
modify firstname varchar(50) not null,
modify lastname varchar(50) not null;

See this demo

答案 1 :(得分:1)

Alter Table StoreRep Modify (lastname Not Null, firstname Not Null);