Single Value Lookup

ssworthi

Registered User.
Local time
Today, 02:52
Joined
Jun 9, 2010
Messages
97
I have a query that provides a lookup for possible sections within an Orchard but it's driven by row so I get multiple results; how do I get results for just the sections possible? Is there a hide duplicate way in a query? Thanks for any help!:rolleyes:
 
I have a query that provides a lookup for possible sections within an Orchard but it's driven by row so I get multiple results; how do I get results for just the sections possible? Is there a hide duplicate way in a query? Thanks for any help!:rolleyes:

Either use Select DISTINCT or use a GROUPING query.

But the question means that you are storing the same data over and over again where it should be in another table and then you select the values from there as options but store the ID instead.
 
That worked! Thank you!
 

Users who are viewing this thread

Back
Top Bottom