单项选择题

已知学生表(学号,姓名,性别,生日),以下事件代码功能是将学生表中生日为空值的学生“性别”字段值设置为“男”。
PrivateSubCommand0_Click()
DimstrAsString
Setdb=CurrentDb()
str=”()”
DoCmd.RunSQLstr
EndSub
按照功能要求,在括号里应填写的是()

A.Update学生表set性别=’男’where生日Is Null
B.Update学生表set性别=’男’where生日=Null
C.Set学生表Values性别=’男’where生日Is Null
D.Set学生表Values性别=’男’where生日=Nun