又是我奇怪的问题。
table users:
id | type | partner | company
------------------------------
1 | 2 | 0 | comp1
2 | 3 | 2 | comp2
3 | 3 | 2 | comp3
4 | 3 | 3 | comp4
table orders:
id | user | partner
--------------------
1 | 2 | 2
2 | 2 | 2
3 | 2 | 3
4 | 3 | 2
我知道跟踪这些数字有点难。我以身份登录 type 2
(users表)并希望从 orders
从 users
与 type 3
它们被列为我的 partners (partner 2)
另外,我想要 company
名字来自
users table
我的成绩也是如此。查询将在 orders
table。
result:
id | user | partner | company
------------------------------
1 | 2 | 2 | comp2
2 | 2 | 2 | comp2
4 | 3 | 2 | comp3
事先谢谢你,如果你不明白这个问题,问我。我会尽量解释的更好,任何编辑,使它更清楚也欢迎。
1条答案
按热度按时间zbsbpyhn1#
也许是这个
希望不言自明,注意我只需要了解用户,查询出合作伙伴。
结果