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 |
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2006-08-16 : 09:32:05
|
Arun writes "How you would use a left join on two tables [Table A] left join [Table B] to include only records from Table A not present in Table B?" |
|
harsh_athalye
Master Smack Fu Yak Hacker
5581 Posts |
Posted - 2006-08-16 : 09:53:26
|
[code]select A.*from TableA A Left Join TableB Bon A.Key = B.Keywhere B.Key is Null[/code]Harsh AthalyeIndia."Nothing is Impossible" |
 |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2006-08-16 : 12:23:41
|
Read about joins in sql server help fileMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|