Changes between Version 23 and Version 24 of Напредни извештаи од базата


Ignore:
Timestamp:
02/13/22 21:09:09 (3 years ago)
Author:
186102
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Напредни извештаи од базата

    v23 v24  
    5454== 5 Најпопуларни конфигурации во изминатите 6 месеци ==
    5555{{{#!sql
    56 
     56select distinct c."name", count(oc.config_id) as cnt
     57from project."Configuration" as c
     58join project.orders_configuration as oc on oc.config_id = c.config_id
     59join project."order" as o on o.order_id = oc.order_id
     60join project.delivery as dlv on dlv.delivery_id = o.delivery_id
     61where now() - interval'6 months' <= dlv."date" and dlv.status = 'Delivered'
     62group by c.name, oc.config_id
     63order by cnt desc
     64limit 5;
    5765}}}
    5866