INSERT INTO Event (EventID, EventType, EventDate, VenueID, OrganizerID, Budget, Description) VALUES (3, 'Corporate Retreat', '2023-06-15', 3, 3, 8000.00, 'Sample corporate retreat event description'), (4, 'Seminar on Technology', '2023-09-05', 4, 4, 3000.00, 'Sample technology seminar description'); ############################################################## select * from Event ; -- Selecting data from the Event table along with related information from other tables SELECT Event.EventID, Event.EventType, Event.EventDate, Venue.VenueName, Venue.Capacity, Venue.Location AS VenueLocation, Venue.Price AS VenuePrice, Organizer.OrganizerName, Customers2.CustomerName AS CustomerName, Bookings.BookingDate FROM Event JOIN Venue ON Event.VenueID = Venue.VenueID JOIN Organizer ON Event.OrganizerID = Organizer.OrganizerID JOIN Bookings ON Event.EventID = Bookings.EventID JOIN Customers2 ON Bookings.CustomerName = Customers2.CustomerName;