On SQL Server 2008 R2, I need to add some columns into a table from another table. e.g. Table1: name value id Jim 288 abf Table 2: name acct num rank Jim 12 29 8 Jim 98 95 7 Jim 20 52 9 What I need: name value id acct num rank acct num rank acct num rank Jim 288 abf 12 29 8 98 95 7 20 52 9 The record numbers in table 2 may be variable. Any help would be appreciate.
I guess you really want to have full join on two tables: SELECT t1.name, t1.value, t1.id, t2.acct, t2.num, t2.rank FROM Table1 AS t1 FULL JOIN Table2 AS t2 ON t1.name=t2.name
another
【在 l******9 的大作中提到】 : On SQL Server 2008 R2, I need to add some columns into a table from another : table. : e.g. : Table1: : name value id : Jim 288 abf : Table 2: : name acct num rank : Jim 12 29 8 : Jim 98 95 7
i*t
9 楼
好奇问下priority有邮戳么?
【在 P****1 的大作中提到】 : 邮戳为准
a*t
10 楼
笑劈了。。。。
n*w
11 楼
what of there are 1000000 rows for Jim in table 2? use row number to generate sequence number then pivot
another
【在 l******9 的大作中提到】 : On SQL Server 2008 R2, I need to add some columns into a table from another : table. : e.g. : Table1: : name value id : Jim 288 abf : Table 2: : name acct num rank : Jim 12 29 8 : Jim 98 95 7
P*1
12 楼
不知道了。。。如果在邮局付钱寄的话,贴的邮资贴纸上有时间吧? 不过IRS估计也不会那么仔细的看
【在 i*****t 的大作中提到】 : 好奇问下priority有邮戳么?
a*t
13 楼
对啊。。我为了看这句话连看了两三部,楞没说一句。。。
【在 p****t 的大作中提到】 : 据说元芳从来没狄胖胖被问过: 元芳,你怎么看
n*t
14 楼
SP 可以做,不过为什么要这么设计?一定要做为什么不在 app 里?
another
【在 l******9 的大作中提到】 : On SQL Server 2008 R2, I need to add some columns into a table from another : table. : e.g. : Table1: : name value id : Jim 288 abf : Table 2: : name acct num rank : Jim 12 29 8 : Jim 98 95 7