Changes between Version 5 and Version 6 of AdvancedReports


Ignore:
Timestamp:
01/05/23 06:16:11 (23 months ago)
Author:
201094
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v5 v6  
    209209order by c.id_customer
    210210}}}
    211 === Извештај за сите сервиси,број на критики кои ги добиле и нивниот просечен рејтинг ===
     211=== Извештај за секое кино, колку од настаните биле организирани кај него и извештај за секој настан колку клиенти биле заинтересирани за секој настан ===
     212{{{#!sql
     213select c.id_cinema,count(distinct coe.id_event) from cinemas c
     214left join cinema_organizes_event coe on coe.id_cinema=c.id_cinema
     215left join events e on e.id_event=coe.id_event
     216where e.start_date between now()-interval'6 months' and now()
     217group by c.id_cinema
     218}}}
    212219
     220{{{#!sql
     221select e.id_event,count(distinct c.id_customer) from events e
     222left join customer_is_interested_in_event ciiie on ciiie.id_event=e.id_event
     223left join customers c on ciiie.id_customer=c.id_customer
     224group by e.id_event
     225}}}