三.写出以下查询语句: 1. 查询选修了c1这门课的学生的学号,姓名,课程名和成绩。

1个回答

  • 我也觉得多,不写了

    3、 select sno,cno,gread

    from 表

    where 条件='wang';

    2、 select sno,sname,cname

    from 表

    where 条件='c1';

    1、select sno,sname,cname,gread

    from 表

    where 条件='c1';