查询信息技术系,机电工程系和管理系的学生的信息,所使用的语法命令( )
A.
select * from student where depart=’ 信息技术系’ and depart=’ 机电工程系’ and depart=’ 管理系’
B.
select * from student where depart=”信息技术系”and depart=”机电工程系”and depart=”管理系”
C.
select * from student where depart in(’信息技术系’,’机电工程系’,’管理系’)
D.
select * from student where depart in(”信息技术系”,”机电工程系”,”管理系”)