SaRiD
Programmer
- Apr 19, 2003
- 45
I've come across a problem that I haven't faced before and was wondering if it can be done.
Basicly the SQL goes like this:
SELECT.... FROM [tablea] INNER JOIN [tableb] ON [tablea].[column] LIKE [tableb].[column]
[tablea].[column] = "example"
[tableb].[column] = "example, example2"
So I want to do a normal table join, except I want it to pick up the records that match but arn't EXACT.
So [tableb].[column] should be picked up if [tablea].[column] had "example"
Can be done???
Basicly the SQL goes like this:
SELECT.... FROM [tablea] INNER JOIN [tableb] ON [tablea].[column] LIKE [tableb].[column]
[tablea].[column] = "example"
[tableb].[column] = "example, example2"
So I want to do a normal table join, except I want it to pick up the records that match but arn't EXACT.
So [tableb].[column] should be picked up if [tablea].[column] had "example"
Can be done???