想问一道sql题目希望高手能指点

2024-12-21 22:05:00
推荐回答(1个)
回答1:

select s.num,s.name,d.mathch
from student s,data d
where s.num=d.num
and d.mathch between 80 and 90
order by d.mathch desc;