求三表联合查询的SQL查询语句_百度知道
[专业]答案:比如有三张表,student,teacher , project : 第一种方法:select * from student,teacher,project where student.id=teacher.sid and student.id=project...更多关于求一条三表关联查询的MySQL语句的问题>>
急!!求MYSQL三表关联查询方法_百度知道
最佳答案: select * from subject a join attachment b on a.tid=b.tid join message c on b.tid=c.tid 或者 select * from subject a ,attachment b ,...更多关于求一条三表关联查询的MySQL语句的问题>>