热门标签
更多>
搜索结果
查询Tags标签: Kuihua,共有 2条记录-
MySQL 三表查询范例
范例: 有三张表,分别存放学生信息,课程信息和成绩 求:每个学生的姓名以及每门课的分数 mysql> select * from students; +-------+---------------+-----+--------+---------+-----------+ | StuID | Name | Age | Gender | ClassID | TeacherID | +-----…
2022/9/11 2:24:33 人评论 次浏览 -
SQL语句多表查询:显示前5位同学的姓名、课程及成绩
MariaDB [hellodb]> select name,course,score from (select * from students limit 5) as st inner join scores sc on st.stuid=sc.stuid inner join courses co on sc.courseid=co.courseid; +-------------+----------------+-------+ | name | course …
2022/2/5 19:42:27 人评论 次浏览