Changes between Version 35 and Version 36 of AdvancedReports


Ignore:
Timestamp:
07/22/24 14:52:03 (2 months ago)
Author:
184006
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v35 v36  
    302302    t.id;
    303303}}}
    304 == Прикажување на возраста на секое милениче.
    305 {{{
    306 SELECT
    307   p.ID AS pet_id,
    308   p.color,
    309   p.description AS pet_description,
    310   p.dateOfBirthday,
    311   AGE(current_date, p.dateOfBirthday) AS pet_age
    312 FROM
    313   project.pets p;
    314 }}}
    315 == Прикажување на држава која е најчест производител на лекови.
    316 {{{
    317  select
    318         state as country,
    319         COUNT(*) as most_common_manufacturer
    320 from
    321         project.manufacturers
    322 group by
    323         state
    324 order by
    325         most_common_manufacturer desc
    326 limit 1;
    327 }}}
    328304== Прикажување на продукти кои што би можело да се потрошат најбрзо бидејќи има побарано најголема количина за нив.
    329305{{{