Viewing 4 posts - 1 through 4 (of 4 total)
Thanks but that won't do it...
this is another way to describe my scenario:
file table
FileID | FileName |
7 | xfiles |
8 | secret |
category table
CatID | CatName |
2 | cats |
3 | dogs |
4 | fish |
5 | fishandchips |
File Category Relationship table:
CatID | FileID |
2 | 7 |
3 | 7 |
4 | 7 |
4 | 8 |
5 | 8 |
Join for searching will produce:
CatID | FileID | CatName | FileName |
2 | 7 | cats | xfiles |
3 | 7 | dogs | xfiles |
4 | 7 | fish | xfiles |
4 | 8 | fish | secret |
5 | 8 | fishandchips | secret |
if I search for the...
February 26, 2004 at 1:39 pm
Excellent thanks Jonathan!
Your suggestion too is just what I wanted!
October 6, 2003 at 6:22 am
Thanks Phill,
Tried this exactly as you outlined but still no joy -- still get a TSQL syntax error
This is the first time I have tried something like this - perhaps...
October 6, 2003 at 4:55 am
Viewing 4 posts - 1 through 4 (of 4 total)