Changes between Initial Version and Version 1 of izvestai


Ignore:
Timestamp:
01/29/25 17:19:04 (34 hours ago)
Author:
213209
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • izvestai

    v1 v1  
     1= Напредни извештаи од базата (SQL и складирани процедури)
     2
     3== Извештај за откжани резервации по ресторан.
     4
     5{{{
     6select
     7        count(rh.cancellation_reason),
     8    au.first_name,
     9    au.last_name,
     10    au.membership_level,
     11    au."role",
     12    rh.cancellation_reason,
     13    rh.restaurant_id
     14from reservation_history rh 
     15inner join app_user au on rh.customer_id = au.id
     16where rh.cancellation_reason = 'Canceled by user'
     17group by au.first_name,
     18    au.last_name,
     19    au.membership_level,
     20    au."role",
     21    rh.cancellation_reason,
     22    rh.restaurant_id
     23order by rh.cancellation_reason
     24
     25select count(r.table_number), r.userid  from reservations r
     26group by r.userid 
     27}}}