Changes between Version 1 and Version 2 of Ticket #11580, comment 10


Ignore:
Timestamp:
Sep 2, 2014, 3:25:23 AM (10 years ago)
Author:
Pauli Sundberg

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11580, comment 10

    v1 v2  
    1616In [22]: statistics_data.models.Measurement.objects.exclude(json_values="").count()
    1717Out[22]: 3
     18
     19}}}
     20
     21EDIT 2: But this seems to work:
     22{{{
     23
     24In [24]: statistics_data.models.Measurement.objects.exclude(json_values__isnull=True).count()
     25Out[24]: 2
     26
    1827}}}
    1928
Back to Top