后端相关。

使用学生表和成绩表来演示连接,SQL架构如下: Create table If Not Exists student_info (id int, name varchar(255)); Create table If Not Exists student_score (id int, score int); Truncate table student_info; insert into student_info (id, name) values ('1', 'Wang'); insert into student_info (id, name) values ('2', 'Alice'); insert into student_info (id, name) values ('3', 'Allen'); Truncate table student_score; insert into student_score (id, score) values ('1', '65'); insert into student_score (id, score) values ('2',…

  • 无标签