Changes between Version 1 and Version 2 of VenueCapacity
- Timestamp:
- 05/27/26 23:53:59 (5 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VenueCapacity
v1 v2 450 450 ) 451 451 VALUES ( 452 ' Марко',452 'Александар', 453 453 'Стојановски', 454 ' marko.s@email.com',455 '070-1 23-456'454 'aleksandar@email.com', 455 '070-111-222' 456 456 ); 457 457 … … 478 478 VALUES ( 479 479 'Golden Palace', 480 ' Centar',481 ' Skopje',482 ' Ilindenska15',480 'Центар', 481 'Скопје', 482 'Булевар Македонија 15', 483 483 150, 484 484 55.00, 485 485 1 486 486 ); 487 488 INSERT INTO venue_booking ( 489 date, 490 start_time, 491 end_time, 492 status, 493 price, 494 venue_id, 495 wedding_id 496 ) 497 VALUES ( 498 '2024-07-20', 499 '18:00:00', 500 '23:59:00', 501 'CONFIRMED', 502 4500.00, 503 2, 504 2 505 ); 506 507 INSERT INTO event ( 508 event_type, 509 date, 510 start_time, 511 end_time, 512 status, 513 wedding_id 514 ) 515 VALUES ( 516 'Reception', 517 '2024-07-20', 518 '18:00:00', 519 '23:00:00', 520 'SCHEDULED', 521 2 522 ); 523 524 INSERT INTO guest ( 525 first_name, 526 last_name, 527 email, 528 wedding_id 529 ) 530 VALUES 531 ( 532 'James', 533 'Peterson', 534 'james@email.com', 535 2 536 ), 537 ( 538 'Elizabeth', 539 'Martinez', 540 'elizabeth@email.com', 541 2 542 ), 543 ( 544 'Robert', 545 'Davis', 546 'robert@email.com', 547 2 548 ); 549 550 INSERT INTO attendance ( 551 status, 552 table_number, 553 role, 554 guest_id, 555 event_id 556 ) 557 VALUES 558 ( 559 'CONFIRMED', 560 1, 561 'Guest', 562 1, 563 1 564 ), 565 ( 566 'CONFIRMED', 567 1, 568 'Guest', 569 2, 570 1 571 ), 572 ( 573 'CONFIRMED', 574 2, 575 'Guest', 576 3, 577 1 578 ), 579 ( 580 'ATTENDED', 581 1, 582 'Guest', 583 1, 584 1 585 ), 586 ( 587 'ATTENDED', 588 1, 589 'Guest', 590 2, 591 1 592 ), 593 ( 594 'ATTENDED', 595 2, 596 'Guest', 597 3, 598 1 599 ); 487 600 }}} 488 601 … … 490 603 491 604 {{{ 492 venue_id | venue_name | venue_capacity 493 ----------+---------------+---------------- 494 2 | Golden Palace | 150 605 venue_id | venue_name | venue_capacity | wedding_id | organizer_name | wedding_date | confirmed_attendees | actual_attendance | available_seats | occupancy_rate_percent | utilization_category | booking_status | booking_date 606 ----------+---------------+----------------+------------+------------------------+--------------+---------------------+-------------------+-----------------+------------------------+---------------------+----------------+-------------- 607 2 | Golden Palace | 150 | 2 | Александар Стојановски | 2024-07-20 | 3 | 3 | 147 | 2.00 | LOW | CONFIRMED | 2024-07-20 495 608 }}} 496 609 … … 498 611 499 612 * Confirmed Attendees: 500 * guests marked as CONFIRMED613 * 3 guests with CONFIRMED attendance status 501 614 502 615 * Actual Attendance: 503 * guests marked as ATTENDED616 * 3 guests with ATTENDED status 504 617 505 618 * Available Seats: 506 * venue capacity minus confirmed attendees619 * 150 - 3 = 147 507 620 508 621 * Occupancy Rate: 509 * percentage of occupied seats622 * (3 / 150) × 100 = 2.00% 510 623 511 624 * Utilization Category: 512 * calculated based on occupancy thresholds 625 * occupancy below 60% → LOW 626 627 * Operational Insight: 628 * the venue has very low occupancy utilization and significant unused capacity 513 629 514 630 == Summary ==
