【多选题】
如下表student中,如何筛选type为包含数学或语文的记录?()<br /> <img src="https://nimg.ppkao.com/2019-05/wanxiaokui/2019051212501098568.jpg?sign=c04e0f709c4d4e6be1743586a982791c&t=62d60ae7" />
A、select*from student where type=“数学” and type=“语文”
B、select*from student where type=“数学” or type=“语文”
C、select*from student where type in(“数学”,“语文”)
D、select*from student where type in(“数学”、“语文”)