sql增删改查
select * from student_info s left join course c on s.course_id = c.course_idwhere c.course_id > 10000 limit 10;select * from student_info where student_id = 8628;delete from student_info WHERE student_id = 8628;UPDATE student_info SET name = "dadada"








