多项选择题
A.使用“数据表”视图B.使用“设计”视图C.使用“查询”视图D.使用“表向导”视图
A.update 产品set 单价=0where 中止B.update 产品set 单价=30where not 中止and 单价< 20C.update 产品set 单价=iif(中止,0,iif([单价]< 20,30,[单价]))D.update 产品set 单价=0,单价=30where 中止and 单价< 20
A.select *from 产品where len([产品名称])>=5and 类别is nullB.select *from 产品where len([产品名称])>=5and 类别=””C.select *from 产品where len([产品名称])>=5and 类别=0D.select *from 产品where [产品名称]>=5and 类别is null