Changes between Version 16 and Version 17 of AdvancedReports


Ignore:
Timestamp:
03/10/22 18:49:24 (3 years ago)
Author:
191151
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v16 v17  
    2323{{{#!sql
    2424select
    25         o.user_id as organizer_id,
    26         at2.name
     25        distinct at2.name
    2726from organizers o
    2827left join events e on e.organizer_id = o.user_id
     
    3130join artist_types at2 on at2.id = a.artist_type_id
    3231where
    33         o2.status = 1 and
    34         o2.completed_at between now() - interval '6 months' and now()
     32        o2.status = 'COMPLETED'and
     33        o2.completed_at between now() - interval '6 months' and now()
    3534group by o.user_id, at2.name
    3635}}}