其实就是 inner join

select * from  Class c,Student s where c.ClassID=s.ClassID

select * from Class c inner join  Student s on  c.ClassID=s.ClassID

效果是一样的

select * from 多张表的用法

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-02
  • 2021-05-28
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-30
  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案