柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
已知学生表(学号,姓名,性别,生日),以下事件代码功能是将学生表中生日为空值的学生"性别"字段值设置为"男"。 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
热度🔥461
参考答案:A
解析:打开微信小程序查看本题解析
点击打开小程序查看解析
content_copy
扫码免费计算机二级刷题
2024年计算机等级考试题库
推荐
下关于逻辑运算符两侧运算对象的叙述中正确的是( )。
设有定义 double a[10] ,*s=a; 以下能够代表数组元素a[3]的是
下列函数的功能是 void fun(char *a,char *b) { while((*b=*a)!='\0') { a++; b++;} }
请分析以下程序。 int main() { pid_t pid; pid = fork(); if(pid==0) printf("I am the child process, my process ID is%d\n",getpid()); else printf("I am the parent process, my process ID is%d\n",getpid());} 那么,该程序正确运行后的结果是
标签
二级ACCESS
学生
生日
性别
set