j******n 发帖数: 2206 | 1 a and b has two common ids: id1 and id2.
I want to merge them ,by a.id1=b.id1 or a.id2=b.id2
怎么弄呢?
就比如两个data sets都有社会安全号和date birth, 其中任何一个match,就表明是同
一个人,因为输入的一些失误,同一个人可能有不同的安全号,但是会有一样的date
birth.
这种or的merge条件应该怎么写呢? | n****n 发帖数: 772 | 2 use proc sql
【在 j******n 的大作中提到】 : a and b has two common ids: id1 and id2. : I want to merge them ,by a.id1=b.id1 or a.id2=b.id2 : 怎么弄呢? : 就比如两个data sets都有社会安全号和date birth, 其中任何一个match,就表明是同 : 一个人,因为输入的一些失误,同一个人可能有不同的安全号,但是会有一样的date : birth. : 这种or的merge条件应该怎么写呢?
| G**S 发帖数: 1108 | 3 proc sql;
a and b has two common ids: id1 and id2.
I want to merge them ,by a.id1=b.id1 or a.id2=b.id2
怎么弄呢?
就比如两个data sets都有社会安全号和date birth, 其中任何一个match,就表明是同
一个人,因为输入的一些失误,同一个人可能有不同的安全号,但是会有一样的date
birth.
这种or的merge条件应该怎么写呢?
【在 j******n 的大作中提到】 : a and b has two common ids: id1 and id2. : I want to merge them ,by a.id1=b.id1 or a.id2=b.id2 : 怎么弄呢? : 就比如两个data sets都有社会安全号和date birth, 其中任何一个match,就表明是同 : 一个人,因为输入的一些失误,同一个人可能有不同的安全号,但是会有一样的date : birth. : 这种or的merge条件应该怎么写呢?
| j******n 发帖数: 2206 | 4 我知道sql可以,问题是这个条件怎么写?
on a.id1=b.id1 or a.id2=b.id2? |
|