Changes between Version 23 and Version 24 of Напредни извештаи од базата
- Timestamp:
- 02/13/22 21:09:09 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Напредни извештаи од базата
v23 v24 54 54 == 5 Најпопуларни конфигурации во изминатите 6 месеци == 55 55 {{{#!sql 56 56 select distinct c."name", count(oc.config_id) as cnt 57 from project."Configuration" as c 58 join project.orders_configuration as oc on oc.config_id = c.config_id 59 join project."order" as o on o.order_id = oc.order_id 60 join project.delivery as dlv on dlv.delivery_id = o.delivery_id 61 where now() - interval'6 months' <= dlv."date" and dlv.status = 'Delivered' 62 group by c.name, oc.config_id 63 order by cnt desc 64 limit 5; 57 65 }}} 58 66