【单选题】查询信息技术系,机电工程系和管理系的学生的信息,所使用的语法命令( )
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(”信息技术系”,”机电工程系”,”管理系”)
【判断题】普坦辛米特法是一种让创业者填写预先设定好因素权值的选项式问卷的方法。
【单选题】工程管理信息化指的是( )的开发和利用,以及信息技术在工程管理中的开发和应用。
【单选题】正常成年人每日钙需要量为()(mg/d)。
【单选题】使用JSP标签调用JavaBean,其必须有:
【单选题】查询不在信息技术系,机电工程系和管理系的学生的信息,所使用的语法命令为( )
A.
select * from student where not depart=’ 信息技术系’ and depart=’ 机电工程系’ and depart=’ 管理系’
B.
select * from student where depart not in(’信息技术系’,’机电工程系’,’管理系’)
C.
select * from student where not depart=”信息技术系”and depart=”机电工程系”and depart=”管理系”
D.
select * from student where not depart in(”信息技术系”,”机电工程系”,”管理系”)