柠檬试题库
search
首页 计算机 公务员 驾照 关于

已知学生表(学号,姓名,性别,生日),以下事件代码功能是将学生表中生日为空值的学生"性别"字段值设置为"男"。 Private Sub Command0_Click()   Dim str As String   Set db=CurrentDb()   str="                  "   DoCmd.RunSQL str End Sub 按照功能要求,在横线上应填写的是(  )。


  • A.Update 学生表 set 性别='男' where 生日Is Null
  • B.Update 学生表 set 性别='男' where 生日=Null
  • C.Set 学生表 Values 性别='男' where 生日 Is Null
  • D.Set 学生表 Values 性别='男' where 生日=Null
热度🔥404
参考答案:A
解析:打开微信小程序查看本题解析