spewn
Programmer
- May 7, 2001
- 1,034
i am using the following:
Code:
select prodShape from shapes where type IN ('round','square')
there is no problem if the cell contents i search are only one value (eg. 'round' or 'square' or 'triangle')...however, i have several values in each cell (eg. 'round,square,triangle' or 'rectangle,triangle').
i want to be able to search all cell contents for each word, something similar to...
Code:
select prodShape from shapes where type IN ('%round%','%square%')
any ideas?
- g