Changes between Version 16 and Version 17 of AdvancedReports
- Timestamp:
- 03/10/22 18:49:24 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v16 v17 23 23 {{{#!sql 24 24 select 25 o.user_id as organizer_id, 26 at2.name 25 distinct at2.name 27 26 from organizers o 28 27 left join events e on e.organizer_id = o.user_id … … 31 30 join artist_types at2 on at2.id = a.artist_type_id 32 31 where 33 o2.status = 1 and 34 32 o2.status = 'COMPLETED'and 33 o2.completed_at between now() - interval '6 months' and now() 35 34 group by o.user_id, at2.name 36 35 }}}