Changes between Version 32 and Version 33 of AdvancedReports


Ignore:
Timestamp:
12/24/22 16:05:23 (2 years ago)
Author:
181006
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v32 v33  
    173173{{{#!div style="font-size: 90%"
    174174  {{{#!sql
    175 select c.id_user, r.rating, count(t.id_transaction) as broj_transakcii
     175select u."name", u.surname, r.rating, count(t.id_transaction) as broj_transakcii
    176176from customer c
    177177join review r on c.id_user=r.id_user_customer
    178178join cart c2 on c.id_user=c2.id_user_customer
    179179join transactions t on c2.id_user_customer=t.id_user_customer
     180join users u on c.id_user=u.id_user
    180181where r.rating >7
    181 group by c.id_user, r.rating
     182group by u."name", u.surname, r.rating
    182183  }}}
    183184}}}