若要找出关系R中B属性值包含字符'h'的所有元组,选择子句的WHERE后应表达为B LIKE '_h_'。
查看答案
若要求查找‘李’姓学生的学生号和姓名,对应的SQL语句是SELECT S#,SNAME FROM S WHERE SNAME LIKE ‘李%’。
A. 对
B. 错
8.1在横线上填上适当的语句,使程序能正常运行。class Test{【1】float fl;【2】{num=1;f1=2.0f;}public int getint(){return num;}public float getfloat(){return fl;}}class Demo{public static void main(String []args){{ 【3】t=new Test();System.out.print(t.getint()+” “+t.getfloat());}运行结果为:1 2.0
8.2在横线上填上适当的语句,使程序能正常运行。【1】{【2】(inta,intb){returna-b;}}classStudentDemo{publicvoidshow(Students,inta,intb){System.out.println(s.sum(a,b));}}publicclassDemo{publicstaticvoidmain(String[]args){intx=20,y=10;Students=【3】;【4】=newStudentDemo();st.show(s,x,y);}}
8.3在横线上填上适当的语句,使程序能正常运行。【1】{【2】publicvoidsetAge(inta){age=a;}【3】{【4】}}publicclassDemo{publicstaticvoidmain(String[]args){Students=【5】s.age=20;System.out.println(s.getAge());//显示age的值}}