数据库中有两张表,一张为学院表(学院ID,学院名称),另一张为成绩表(学号,姓名,分数,学院ID)。问题

发布网友 发布时间:2022-04-24 04:21

我来回答

1个回答

热心网友 时间:2023-10-27 14:01

select top 20 * from 成绩表 where 学院ID in (select 学院ID from 学院表 where 学院名称='计算机学院') order by 分数 desc

或是这样写

select top 20 成绩表.* from 成绩表,学院表 where 成绩表.学院ID=学院表.学院ID and 学院表.学院名称='计算机学院' order by 分数 desc

热心网友 时间:2023-10-27 14:01

select top 20 * from 成绩表 where 学院ID in (select 学院ID from 学院表 where 学院名称='计算机学院') order by 分数 desc

或是这样写

select top 20 成绩表.* from 成绩表,学院表 where 成绩表.学院ID=学院表.学院ID and 学院表.学院名称='计算机学院' order by 分数 desc

热心网友 时间:2023-10-27 14:01

select top 20 * from 成绩表 where 学院ID in (select 学院ID from 学院表 where 学院名称='计算机学院') order by 分数 desc

或是这样写

select top 20 成绩表.* from 成绩表,学院表 where 成绩表.学院ID=学院表.学院ID and 学院表.学院名称='计算机学院' order by 分数 desc

热心网友 时间:2023-10-27 14:01

select top 20 * from 成绩表 where 学院ID in (select 学院ID from 学院表 where 学院名称='计算机学院') order by 分数 desc

或是这样写

select top 20 成绩表.* from 成绩表,学院表 where 成绩表.学院ID=学院表.学院ID and 学院表.学院名称='计算机学院' order by 分数 desc

热心网友 时间:2023-10-27 14:01

select top 20 * from 成绩表 where 学院ID in (select 学院ID from 学院表 where 学院名称='计算机学院') order by 分数 desc

或是这样写

select top 20 成绩表.* from 成绩表,学院表 where 成绩表.学院ID=学院表.学院ID and 学院表.学院名称='计算机学院' order by 分数 desc

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com