我想从表 A whereUserId=1
和表 B where中选择行UserName=xxx
。
如果 A 和 B 的行相同,我们可以使用 group。
表 A
Session UserId
-----------------
1 1
2 2
表 B
Session Username
-------------------
1 xxx
11 xxx
12 xxx
用户表
UserId Username
------------------
1 xxx
现在我想从表 awhere userid = 1
和表 b中获取行where username = xxx
。如果来自 a 和 b 的会话相同,我们可以将其分组。
Session
==========
1
11
12