多选题 : 查询除了计算机18001班之外的所有学生信息,正确的SQL语句是()。
(A)select * from student where not class='计算机18001'
(B)select * from student where class<>'计算机18001'
(C)select * from student where class!='计算机18001'
(D)select * from student where not class is '计算机18001'
参考答案
继续答题:下一题
更多2023中级大数据分析师试题
- 1每个类对应一个对象。
- 2MapReduce中,不允许节点硬件失效或者软件出错。
- 3在Excel中能够实现的功能包括()。
- 4MySQL中,关于where和having的区别描述正确的是()。
- 5下列选项中不属于File类能够实现的功能的是()。
- 6下面代码的执行结果是( )。public class Parent {public int a = 10;}public class Child extends Parent{public int a=20;}public class Test {public static void main(String[] args) {Child child = new Child();System.out.println(child.a);}}