I'm trying to count the unique number of case_numbers between 2014-02-27 and 2014-02-28 from the chicago crime database. The data source is here: http://data.cityofchicago.org/resource/ijzp-q8t2.json
The API docs are here: http://dev.socrata.com/docs/queries.html
I've come up with the query below, but it counts each unique case_number, individually - resulting in a count of 1 for each unique case. I want to count the total number of unique case_numbers that were updated_on between 2014-02-27 and 2014-02-28. It should return 680 records.
Thoughts on how to change this query to yield the desired results?