databaseReference.child("List").orderByChild("Country")
                               .equalTo("US")
                               .addListenerForSingleValueEvent(new ValueEventListener() {
It work OK if the country value only is "US".
But if country value have more than a word: "US UK" it doesn't show this value, how can I search the value "US" in this case ?
Thanks for your help !!
 
     
    