eQL Limit Fixed Value attributes

I am trying to write eql that uses a Fixed value list as a paramerter.

For One parameter I want to list only the Active values in the list.  "Active Treatment Plant"

For another parameter, I want to list only the Inactive values in the list.  "Inactive Treatment Plant"

This is what is supplied when I click on Get Value from a Search.

START WITH Document 
SELECT 
   Attributes["Global""TREATMENT PLANT"].Value col1,
   Attributes["Global""TREATMENT PLANT"].Value col2 
WHERE 
   Attributes["Global""TREATMENT PLANT"].Value LIKE @StringValue 
ORDER BY 
   Attributes["Global""TREATMENT PLANT"].Value

Thanks for any support in advance.