Changes between Version 49 and Version 50 of AdvancedReports


Ignore:
Timestamp:
12/24/22 17:39:58 (2 years ago)
Author:
181006
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v49 v50  
    163163}}}
    164164
     165OR
     166
     167{{{#!div style="font-size: 90%"
     168  {{{#!sql
     169select q4.godina, q4.city, q4.max_broj_nastani
     170from    (
     171(
     172        select extract (year from e."date") as godina,
     173                count(distinct e.id_event) broj_nastani, e.city
     174        from events e
     175        group by godina, e.city
     176) q1
     177
     178join
     179
     180(
     181        select max(q2.broj_nastani) as max_broj_nastani
     182        from
     183                (
     184                select extract (year from e."date") as godina,
     185                        count(distinct e.id_event) broj_nastani, e.city
     186                from events e
     187                group by godina, e.city
     188) q2 ) q3
     189on
     190        q1.broj_nastani = q3.max_broj_nastani)
     191as q4
     192  }}}
     193}}}
     194
    165195== Артист со максимален број на одржани настани
    166196