SQL语句如何实现一张表的两个字段通过外连接另一张表得到想要的信息

2024-11-18 10:37:05
推荐回答(1个)
回答(1):

基本这样:

select * from msginfo a,userinfo b,userinfo c where a.msgsenderid=b.userid and a.msgreceiverid=c.userid

*你替换成要查询的相应前缀+字段即可。

就是userinfo表用两次,分别关联msginfo表的两个字段。