Is there a way to reference or combine multiple fields into a single name so that it can be referenced by that new name? For example: somefield IN (a,b,c,d) If I run a query for "somefield" I get "a", "b", "c", "d" returned. I want to be able to refer to "somefield" by a single name. Is that possible? So if run a query for "somefield", I would get the aggregate results of a,b,c,d ?
... View more