多项选择题

Mybatis中批量删除语句正确的是()

A.delete from user where id in(1,2,3)
B.delete from user
C.delete from user where id=1or id=2or id=3
D.delete *from user