多项选择题

将产品表中被中止的产品单价清零,未被中止且单价在20元以下的调至30,不正确的有()

A.update 产品set 单价=0where 中止
B.update 产品set 单价=30where not 中止and 单价< 20
C.update 产品set 单价=iif(中止,0,iif([单价]< 20,30,[单价]))
D.update 产品set 单价=0,单价=30where 中止and 单价< 20