luckycharms
Registered User.
- Local time
- Today, 01:42
- Joined
- Jan 31, 2011
- Messages
- 24
Hi Folks,
I'm doing something like the following:
However, the "aMatch" column resulting from the query is either numeric or text. Is there any way I can specify that the resulting column should be a boolean?
thanks!
I'm doing something like the following:
Code:
Select NOT(IsNull(a.ID)) as aMatch, a.*, b.* FROM
TableA a RIGHT JOIN TableB b
ON a.ID = b.ID
thanks!