Changes between Version 3 and Version 4 of RSVPConversion
- Timestamp:
- 05/28/26 00:10:18 (5 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RSVPConversion
v3 v4 500 500 3 501 501 ); 502 503 INSERT INTO guest ( 504 first_name, 505 last_name, 506 email, 507 wedding_id 508 ) 509 VALUES 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 529 INSERT INTO event_rsvp ( 530 response_date, 531 status, 532 guest_id, 533 event_id 534 ) 535 VALUES 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 555 INSERT INTO attendance ( 556 status, 557 table_number, 558 role, 559 guest_id, 560 event_id 561 ) 562 VALUES 563 ( 564 'ATTENDED', 565 1, 566 'Guest', 567 1, 568 1 569 ), 570 ( 571 'ATTENDED', 572 1, 573 'Guest', 574 2, 575 1 576 ); 502 577 }}} 503 578 … … 505 580 506 581 {{{ 507 wedding_id | organizer_name | event_type | invitations508 ------------+----------------+------------ +-------------509 3 | Марко Николов | Ceremony | 15582 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 510 585 }}} 511 586 … … 513 588 514 589 * Total Invitations: 515 * totalinvited guests590 * 3 invited guests 516 591 517 592 * RSVP Responses: 518 * guests whosubmitted RSVP responses593 * all invited guests submitted RSVP responses 519 594 520 595 * 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 528 618 529 619 == Summary ==
