Changes between Version 32 and Version 33 of AdvancedReports
- Timestamp:
- 12/24/22 16:05:23 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v32 v33 173 173 {{{#!div style="font-size: 90%" 174 174 {{{#!sql 175 select c.id_user, r.rating, count(t.id_transaction) as broj_transakcii175 select u."name", u.surname, r.rating, count(t.id_transaction) as broj_transakcii 176 176 from customer c 177 177 join review r on c.id_user=r.id_user_customer 178 178 join cart c2 on c.id_user=c2.id_user_customer 179 179 join transactions t on c2.id_user_customer=t.id_user_customer 180 join users u on c.id_user=u.id_user 180 181 where r.rating >7 181 group by c.id_user, r.rating182 group by u."name", u.surname, r.rating 182 183 }}} 183 184 }}}