In the quiz for Data Explorer, we are asked the following…
In the sample_training.trips collection a person with birth year 1961 took a trip that started at “Howard St & Centre St”. What was the end station name for that trip?
If I run the following query in the data explorer…
{"birth year": "1961", "start station name": "Howard St & Centre St"}
I get 0 records returned. So I trimmed it down to see what works and what doesn’t.
{"start station name": "Howard St & Centre St"}
I get 1-20 of many.
{"birth year": "1961"}
I get 0 records returned.
As I understand the syntax of the query and the field name from the JSON document, I THINK I have that query correct.
What am I missing?