[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fgQbPLBmf0jCqWjxpdwDQeHVQPU-hQ2yH09gre5rMH5o":3},{"answer":4,"createTime":5,"id":6,"options":7,"origin":12,"question":19,"related":20,"source":31,"type":32},[],"2025-05-10 18:20:36",186884945,[8,9,10,11],"SELECT CNO, CNAME FROM CO WHERE CNAME LIKE '%数据%'","SELECT CNO, CNAME FROM CO WHERE CNAME LIKE '数据%' AND TEACHER LIKE '刘%'","SELECT CNO, CNAME FROM CO WHERE CNAME LIKE '%数据%'AND TEACHER LIKE '刘%'","SELECT CNO, CNAME FROM CO WHERE CNAME LIKE '%数据%'AND TEACHER LIKE '%刘%'",{"count":13,"courseId":14,"courseImg":15,"courseName":16,"workId":17,"workName":18},11,"21a87aa6e33207dbd089465dfb3064bb","https:\u002F\u002Ftihai-oss-cloud.itihey.com\u002Fimg\u002F133af57f76b2d2da4a37ce7c82d9bb46.jpg","数据库技术与应用","work_43210828","第5章 单表查询作业2","求课程名含有&quot;数据&quot;且'刘'姓老师教授的课程号和课程名; (10.0)",[21,33,40,49,60,69,78,87,96,105],{"answer":22,"createTime":23,"id":24,"options":25,"question":30,"source":31,"type":32},[],"2025-05-09 08:01:19",186548937,[26,27,28,29],"SELECT SNAME, SPEC, AGE FROM ST WHERE AGE&gt;20","SELECT SNAME, SPEC, AGE FROM ST WHERE AGE&gt;20 AND SEX='男'","SELECT SNAME, SPEC, AGE FROM ST WHERE AGE&gt;20 OR SEX='男'","SELECT SNAME, SPEC, AGE FROM ST WHERE SEX='男'","各位同学注意,该题包括单选和多选.下面的所有题都采用如下表结构,请记录下面的表结构.(下面的题目中将不提供表结构了,需要提前记录) \u003Cimg src=\"https:\u002F\u002Ftihai-oss-cloud.itihey.com\u002Fimg\u002Fc0b669c40d89fa89a254bd1d537f5b0c.png\"> (1)求年龄大于20岁的男学生姓名、系和年龄; (10.0)","v1",0,{"answer":34,"createTime":23,"id":35,"options":36,"question":19,"source":31,"type":32},[],186548938,[8,37,38,39],"SELECT CNO, CNAME FROM CO WHERE CNAME LIKE '数据%' AND TEACHER LIKE '马%'","SELECT CNO, CNAME FROM CO WHERE CNAME LIKE '%数据%'AND TEACHER LIKE '马%'","SELECT CNO, CNAME FROM CO WHERE CNAME LIKE '%数据%'AND TEACHER LIKE '%马%'",{"answer":41,"createTime":23,"id":42,"options":43,"question":48,"source":31,"type":32},[],186548939,[44,45,46,47],"select cno, max(grade), avg(grade)from sc where cno='2'","select cno, sum(grade), avg(grade)from sc where cno='2'","select max(grade), avg(grade)from sc where cno='2'","select cno, count(grade), avg(grade)from sc where cno='2'","求课程号为2学生的平均成绩,最高成绩.(10.0)",{"answer":50,"createTime":51,"id":52,"options":53,"question":58,"source":31,"type":59},[],"2025-06-20 12:38:40",186548940,[54,55,56,57],"SELECT SNO FROM SC WHERE CNO='1' AND GRADE BETWEEN 65 AND 85","SELECT SNO FROM SC WHERE CNO='1' AND GRADE&gt;= 65 AND GRADE&lt;=85","SELECT SNO FROM SC WHERE CNO='1' AND GRADE&gt;= 65 OR GRADE&lt;=85;","SELECT SNO FROM SC WHERE CNO='1'OR GRADE BETWEEN 65 AND 85","求课程号为&quot;1&quot;且分数在65到85(包含边界)之间学生的学号;(10.0)",1,{"answer":61,"createTime":51,"id":62,"options":63,"question":68,"source":31,"type":59},[],186548941,[64,65,66,67],"SELECT CNO, CNAME FROM CO WHERE TEACHER='王丹' AND TEACHER='刘%'","SELECT CNO, CNAME FROM CO WHERE TEACHER IN ('王丹')AND TEACHER like '刘%'","SELECT CNO, CNAME FROM CO WHERE TEACHER='王丹' AND TEACHER like '刘%'","SELECT CNO, CNAME FROM CO WHERE TEACHER like '王丹' AND TEACHER like '刘%'","求&quot;王丹&quot;和&quot;刘&quot;姓老师上的课程号和课程名;(10.0)",{"answer":70,"createTime":23,"id":71,"options":72,"question":77,"source":31,"type":59},[],186548942,[73,74,75,76],"SELECT SNAME, SPEC,AGEFROM STWHERE SNAME LIKE '%李%'ANDAGE&gt;19 AND SPEC NOT IN('计算机应用')AND SEX='男'","SELECT SNAME, SPEC,AGEFROM STWHERE SNAME LIKE '李%'ANDAGE&gt;19 AND SPEC NOT IN('计算机应用')AND SEX='男'","SELECT SNAME, SPEC,AGEFROM STWHERE SNAME LIKE '%李%'ANDAGE&gt;19 AND SPEC!='计算机应用'AND SEX='男'","SELECT SNAME, SPEC,AGEFROM STWHERE SNAME LIKE '%李%'ANDAGE&gt;19 AND SPEC!='计算机应用'","&bull;求年龄大于19岁的非计算机应用专业,姓名含有&quot;李&quot;的男学生姓名、系和年龄.(10.0)",{"answer":79,"createTime":23,"id":80,"options":81,"question":86,"source":31,"type":59},[],186548943,[82,83,84,85],"select spec,count(*)from ST where age&gt;18group by spec having spec!='计算机软件'","select sno,spec,count(*)from ST where age&gt;18group by spec having spec!='计算机软件'","select spec,count(*)from ST where age&gt;18 and spec!='计算机软件'group by spec","select spec,count(*)from ST where age&gt;18 and spec!='计算机软件'","求各系中年龄大于18岁的除计算机软件专业之外的各专业人数.(10.0)",{"answer":88,"createTime":23,"id":89,"options":90,"question":95,"source":31,"type":59},[],186548944,[91,92,93,94],"select sdept, count(*)from STgroup by sdept having count(*)&lt;5","select sno,sdept,spec, count(sno)from STgroup by sdept,spec having count(sno)&lt;5","select sdept,spec, count(*)from STgroup by sdept,spec having count(*)&lt;5","select sdept,spec, count(sno)from STgroup by sdept,spec having count(sno)&lt;5","各系中各专业的人数,并要求专业人数小于5.(10.0)",{"answer":97,"createTime":23,"id":98,"options":99,"question":104,"source":31,"type":59},[],186548945,[100,101,102,103],"select * from co where cname like '%_B'","select * from co where cname like '%\u002F_B' escape '\u002F'","select * from co where cname like '%\\_B' escape '\\'","select * from co where cname like '_\u002F_B' escape '\u002F'","查询以&quot;_B&quot; 结尾的课程的详细情况. (10.0)",{"answer":106,"createTime":5,"id":6,"options":107,"question":19,"source":31,"type":32},[],[8,9,10,11]]