1. Learn
  2. /
  3. 课程
  4. /
  5. SQL 关系型数据库入门

Connected

道练习

使用 SET NOT NULL 禁止 NULL 值

professors 表现在几乎已经准备就绪。不过,它仍然允许插入 NULL。尽管某些教授可能缺少部分信息,但有些列应该始终被填写。

说明 1/2

undefined XP
  • 1

    为 firstname 列添加 not-null 约束。

  • 2

    为 lastname 列添加 not-null 约束。