how to select multiple value from one field

suhas hv September 26, 2011

I have a field type of "Content Type" and in this we have some 8-10 values that needs to be fetched while running the query.Am able to select only one instance of my "Content Type".How do we select N values from this field.

Here is my query of selecting single value:

"Content Type" = xxxx

But i want all the "Content Type" should be displayed using a query.I tried using ' , ' operator and " ' ".. etc but am not able to fetch the data.

I feel if i give something like below query it should be able to fetch all values

"Content Type"= xxxx,yyyy,zzzz

2 answers

0 votes
suhas hv November 17, 2011

Yeah thanks for your reply... now am able to get the results. :)

0 votes
Aspect Infra Team
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 1, 2011

if i understand you right

you should write in query

"Content Type" in ( xxxx, yyyy, zzzz )

instead of

"Content Type"=...

Suggest an answer

Log in or Sign up to answer