Changes between Version 9 and Version 10 of AdvancedReports


Ignore:
Timestamp:
02/01/22 14:38:27 (2 years ago)
Author:
191215
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v9 v10  
    138138}}}
    139139
    140 == Број на барања испратени кон одреден артист за одреден настан.
    141 
    142 {{{#!sql
    143 select a.user_id, count(o.artist_id) as num_of_offers_received
     140== Број на барања испратени кон артисти.
     141
     142{{{#!sql
     143select
     144        a.user_id,
     145        count(o.id) as num_of_offers_received
    144146from artists a
    145147join users u on u.id = a.user_id
    146148join offers o on o.artist_id = a.user_id
    147149join events e on e.id = o.event_id
    148 where
    149         e.title = 'Igor''s Birthday' and
    150         u.username = 'test_artist_1'
    151150group by a.user_id
    152151}}}