Guest_imported
New member
- Jan 1, 1970
- 0
SELECT MAX(version)
FROM files AS a, wos AS b
WHERE (((a.filename)='buildversion.txt')
And ((a.project)='$/Portal')
And b.wo=a.wo
Heres the problem, a.key is an int
b.fkeys is a string
I need a piece in my where that states a.key must be present in b.fkeys
b.fkeys has the format 'number,number,number,etc...'
any way to do this? I thought I could do this using a LIKE statement but my patience escapes me.
TiA,
-Tim
FROM files AS a, wos AS b
WHERE (((a.filename)='buildversion.txt')
And ((a.project)='$/Portal')
And b.wo=a.wo
Heres the problem, a.key is an int
b.fkeys is a string
I need a piece in my where that states a.key must be present in b.fkeys
b.fkeys has the format 'number,number,number,etc...'
any way to do this? I thought I could do this using a LIKE statement but my patience escapes me.
TiA,
-Tim