注册 登录
编程论坛 SQL Server论坛

怎么根据一张表的数据筛选另外一张表呢?

yanrandi 发布于 2017-10-19 11:37, 1674 次点击
table1
team_id     number
 1              2
 2              3
 3              4
 4              5
 5              6

table2
id  team_id      time
1     1        2017/10/9
2     1        2017/10/10
3     1        2017/10/11
4     2        2017/10/12
5     2        2017/10/13
6     2        2017/10/14
7     2        2017/10/15

 想得到以下结果:
id     team_id     time
1         1        2017/10/9
2         1        2017/10/10
4         2        2017/10/12
5         2        2017/10/13
6         2         2017/10/14

根据table1 的number值 筛选table2 的数据
1 回复
#2
ZHRXJR2017-10-21 19:11
“根据table1 的number值 筛选table2 的数据”
感到有问题,因为table2中没有number字段,无法筛选。如果仅仅以team_id字段筛选,结果与table2完全一样。
1