Oracle 练习

1. 题目

从 Student 表和 Achievement 表中查询成绩 >85 分的学生的姓名与成绩

2. 实例

点我看答案
select s.name, a.mark
from student s, achievement a
where s.id = a.id
    and a.mark > 85;

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""