Changes between Initial Version and Version 2 of Ticket #23669


Ignore:
Timestamp:
Oct 16, 2014, 12:36:38 PM (10 years ago)
Author:
Gregory Goltsov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23669 – Description

    initial v2  
    22
    33{{{
     4#!python
    45class Module(models.Model):
    56    score = models.IntegerField()
     
    1011
    1112{{{
     13#!sql
    1214SELECT
    1315    m.id
     
    3133
    3234{{{
     35#!python
    3336Module.objects.values(     # GROUP BY module_id, user_id
    3437    'id', 'user'
Back to Top