• 2021-04-14 问题

    【多选题】在MySQL中,学生表Students中包含学号sid(主键)、姓名sname。现在查询所有有重名的学生姓名,以下语句正确的是()。 A. select sname from students group by sid having count(sid)>1; B. select sname from students group by sname having count(sid)>1; C. select distinct a.sname from students A, students B where A.sname=B.sname; D. select distinct a.sname from students A, students B where A.sname=B.sname and A.sid !=B.sid;

    【多选题】在MySQL中,学生表Students中包含学号sid(主键)、姓名sname。现在查询所有有重名的学生姓名,以下语句正确的是()。 A. select sname from students group by sid having count(sid)>1; B. select sname from students group by sname having count(sid)>1; C. select distinct a.sname from students A, students B where A.sname=B.sname; D. select distinct a.sname from students A, students B where A.sname=B.sname and A.sid !=B.sid;

  • 2022-06-19 问题

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。 A: alter table stu add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu add constraint fk_sid foreign key(sid) references score(sid); C: alter table score add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score add constraint fk_sid foreign key(sid) references stu(sid);

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。 A: alter table stu add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu add constraint fk_sid foreign key(sid) references score(sid); C: alter table score add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score add constraint fk_sid foreign key(sid) references stu(sid);

  • 2022-06-19 问题

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。() A: alter table stu<br> add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu<br> add constraint fk_sid foreign key(sid) references score(sid); C: alter table score<br> add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score<br> add constraint fk_sid foreign key(sid) references stu(sid);

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。() A: alter table stu<br> add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu<br> add constraint fk_sid foreign key(sid) references score(sid); C: alter table score<br> add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score<br> add constraint fk_sid foreign key(sid) references stu(sid);

  • 2022-06-05 问题

    查询选修了2门课程以上的学生学号() A: select sid,count(*) from sc group by sid having count(*)>=2 B: select sid,count(*) from sc group by sid where count(*)>=2 C: select sid,count(*) from sc where count(*)>=2 group by sid D: select sid,count(*) from sc group by cid having count(*)>=2

    查询选修了2门课程以上的学生学号() A: select sid,count(*) from sc group by sid having count(*)>=2 B: select sid,count(*) from sc group by sid where count(*)>=2 C: select sid,count(*) from sc where count(*)>=2 group by sid D: select sid,count(*) from sc group by cid having count(*)>=2

  • 2022-05-29 问题

    按照学号进行分组,统计学生的平均成绩() A: select sid, avg(grade) from student group by cid B: select sid, avg(grade) from student group by sid C: select sid, avg(grade) from sc group by sid D: select sid, avg(grade) from sc group by cid

    按照学号进行分组,统计学生的平均成绩() A: select sid, avg(grade) from student group by cid B: select sid, avg(grade) from student group by sid C: select sid, avg(grade) from sc group by sid D: select sid, avg(grade) from sc group by cid

  • 2022-06-01 问题

    DR设备的安装缩光器照射野和指示灯照射野应一致,允许误差值为() A: <1%SID B: <2%SID C: <3%SID D: <5%SID

    DR设备的安装缩光器照射野和指示灯照射野应一致,允许误差值为() A: <1%SID B: <2%SID C: <3%SID D: <5%SID

  • 2022-06-06 问题

    各系列产品重点考虑指标,其中小猪料考虑的重点营养指标是() A: 功能性、净能、SID氨基酸 B: 蛋白、SID赖氨酸 C: 净能、SID氨基酸 D: 纤维、FCHO、ICHO、净能、SID氨基酸

    各系列产品重点考虑指标,其中小猪料考虑的重点营养指标是() A: 功能性、净能、SID氨基酸 B: 蛋白、SID赖氨酸 C: 净能、SID氨基酸 D: 纤维、FCHO、ICHO、净能、SID氨基酸

  • 2022-06-06 问题

    各系列产品重点考虑指标,其中小猪料考虑的重点营养指标是() A: 功能性、净能、SID氨基酸 B: 蛋白、SID赖氨酸 C: 净能、SID氨基酸 D: 纤维、FCH E: ICH F: 净能、SID氨基酸

    各系列产品重点考虑指标,其中小猪料考虑的重点营养指标是() A: 功能性、净能、SID氨基酸 B: 蛋白、SID赖氨酸 C: 净能、SID氨基酸 D: 纤维、FCH E: ICH F: 净能、SID氨基酸

  • 2021-04-14 问题

    在查询学生信息表Student_info数据时,为学号列Sid定义别名为学号,以下选项正确的是______。A.()select()Sid()as()学号()from()Student_info()B.()select()学号()Sid()from()Student_info()C.()select()学号()as()Sid()from()Student_info()D.()select()Sid=学号()from()Student_info

    在查询学生信息表Student_info数据时,为学号列Sid定义别名为学号,以下选项正确的是______。A.()select()Sid()as()学号()from()Student_info()B.()select()学号()Sid()from()Student_info()C.()select()学号()as()Sid()from()Student_info()D.()select()Sid=学号()from()Student_info

  • 2021-04-14 问题

    完成下面的Person类封装填空。 ________ com.softfz; ________ class Person { _______ int sid; _______ String sname; _______ int getSid() { return sid; } _______ void setSid(int sid) { this.sid = sid; } _______ String getSname() { return sname; } _______ void setSname(String sname) { this.sname = sname; } }

    完成下面的Person类封装填空。 ________ com.softfz; ________ class Person { _______ int sid; _______ String sname; _______ int getSid() { return sid; } _______ void setSid(int sid) { this.sid = sid; } _______ String getSname() { return sname; } _______ void setSname(String sname) { this.sname = sname; } }

  • 1 2 3 4 5 6 7 8 9 10