Changes between Version 3 and Version 4 of RSVPConversion


Ignore:
Timestamp:
05/28/26 00:10:18 (5 hours ago)
Author:
193284
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RSVPConversion

    v3 v4  
    500500    3
    501501);
     502
     503INSERT INTO guest (
     504    first_name,
     505    last_name,
     506    email,
     507    wedding_id
     508)
     509VALUES
     510(
     511    'Ana',
     512    'Petrovska',
     513    'ana@email.com',
     514    3
     515),
     516(
     517    'David',
     518    'Stefanovski',
     519    'david@email.com',
     520    3
     521),
     522(
     523    'Elena',
     524    'Trajkovska',
     525    'elena@email.com',
     526    3
     527);
     528
     529INSERT INTO event_rsvp (
     530    response_date,
     531    status,
     532    guest_id,
     533    event_id
     534)
     535VALUES
     536(
     537    '2024-08-01',
     538    'CONFIRMED',
     539    1,
     540    1
     541),
     542(
     543    '2024-08-02',
     544    'CONFIRMED',
     545    2,
     546    1
     547),
     548(
     549    '2024-08-03',
     550    'DECLINED',
     551    3,
     552    1
     553);
     554
     555INSERT INTO attendance (
     556    status,
     557    table_number,
     558    role,
     559    guest_id,
     560    event_id
     561)
     562VALUES
     563(
     564    'ATTENDED',
     565    1,
     566    'Guest',
     567    1,
     568    1
     569),
     570(
     571    'ATTENDED',
     572    1,
     573    'Guest',
     574    2,
     575    1
     576);
    502577}}}
    503578
     
    505580
    506581{{{
    507  wedding_id | organizer_name | event_type | invitations
    508 ------------+----------------+------------+-------------
    509  3          | Марко Николов  | Ceremony   | 15
     582 wedding_id | organizer_name | wedding_date | event_id | event_type | total_invitations | rsvp_responses | confirmed_rsvps | declined_rsvps | attendance_records | actual_attendees | rsvp_response_rate_percent | confirmation_rate_percent | attendance_conversion_percent
     583------------+----------------+--------------+----------+-------------+-------------------+----------------+------------------+-----------------+--------------------+------------------+-----------------------------+----------------------------+--------------------------------
     584 3          | Марко Николов  | 2024-08-10   | 1        | Ceremony    | 3                 | 3              | 2                | 1               | 2                  | 2                | 100.00                      | 66.67                      | 100.00
    510585}}}
    511586
     
    513588
    514589* Total Invitations:
    515   * total invited guests
     590  * 3 invited guests
    516591
    517592* RSVP Responses:
    518   * guests who submitted RSVP responses
     593  * all invited guests submitted RSVP responses
    519594
    520595* Confirmed RSVPs:
    521   * responses with CONFIRMED status
    522 
    523 * Attendance Conversion:
    524   * actual attendees compared to confirmed RSVPs
    525 
    526 * Response Rate:
    527   * RSVP responses relative to invitations
     596  * 2 guests confirmed attendance
     597
     598* Declined RSVPs:
     599  * 1 guest declined the invitation
     600
     601* Attendance Records:
     602  * 2 attendance records created
     603
     604* Actual Attendees:
     605  * 2 guests attended the event
     606
     607* RSVP Response Rate:
     608  * (3 / 3) × 100 = 100.00%
     609
     610* Confirmation Rate:
     611  * (2 / 3) × 100 = 66.67%
     612
     613* Attendance Conversion Rate:
     614  * (2 / 2) × 100 = 100.00%
     615
     616* Operational Insight:
     617  * all confirmed guests successfully attended the event, indicating strong RSVP reliability
    528618
    529619== Summary ==