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 |
|
cipriani1984
Constraint Violating Yak Guru
304 Posts |
Posted - 2011-02-02 : 10:18:19
|
| Hi,This is probably a silly/basic question.But I have the followingif not exists(select a.afrom a inner join b on a.a = (b.a OR b.b))it doesnt like it, isnt there a way to join using either or? |
|
|
cipriani1984
Constraint Violating Yak Guru
304 Posts |
Posted - 2011-02-02 : 10:21:46
|
its alright fixed it.on a.a = b.a OR a.a = b.bquote: Originally posted by cipriani1984 Hi,This is probably a silly/basic question.But I have the followingif not exists(select a.afrom a inner join b on a.a = (b.a OR b.b))it doesnt like it, isnt there a way to join using either or?
|
 |
|
|
|
|
|