Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
rebeka.six
Starting Member
2 Posts |
Posted - 2008-11-22 : 09:49:26
|
| I need help with joining these two tables:Table1idx idy---------one 1two 2tree 3Table2idy u-------1 a2 b3 c4 d5 e6 fI want to show rows from the Table1 that have idx=one joined with all the rows from Table2.So, I want to join these two tables so that Table1.idy=Table2.idy and Table1.idx=oneThe result table should look like this.Result table:idx idy u--------------one 1 aNULL 2 bNULL 3 cNULL 4 dNULL 5 eNULL 6 fCan anyone help me with this?Thanks,Rebeka |
|
|
sodeep
Master Smack Fu Yak Hacker
7174 Posts |
Posted - 2008-11-22 : 10:02:38
|
| Don't cross post. |
 |
|
|
|
|
|