diff --git a/master/generate_data.py b/master/generate_data.py index cefae65..3a66f0d 100644 --- a/master/generate_data.py +++ b/master/generate_data.py @@ -2,6 +2,7 @@ from faker import Faker import random +from datetime import datetime, timedelta fake = Faker() @@ -162,4 +163,83 @@ +# def generate_seat_data(hall_id, cinema_id, seating_capacity): +# rows = random.randint(3, 8) +# seats_per_row = seating_capacity // rows +# central_rows = min(rows, 3) # Центральные ряды +# seat_data = [] + +# for row_number in range(1, rows + 1): +# for seat_number in range(1, seats_per_row + 1): +# class_coefficient = 1.2 if row_number <= central_rows else 1.0 +# seat_id = f"{cinema_id:03d}{hall_id:03d}{row_number:03d}{seat_number:03d}" + +# seat_data.append((seat_id, seat_number, row_number, class_coefficient, hall_id)) + +# return seat_data + +# # Генерация SQL-запросов для вставки данных в таблицу Seat +# for cinema_id, hall_id, seating_capacity in [(1, 1, 80), (1, 2, 90), (1, 3, 20)]: +# seat_data = generate_seat_data(hall_id, cinema_id, seating_capacity) + +# for seat_id, seat_number, row_number, class_coefficient, hall_id in seat_data: +# sql_query = f"INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) " \ +# f"VALUES ('{seat_id}', {seat_number}, {row_number}, {class_coefficient}, {hall_id});" +# print(sql_query) + + + + + +# Функция для генерации запроса вставки сеанса +def generate_showtime_query(showtime_id, start_time, end_time, hall_id, film_id, price_coefficient): + return f"INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES ({showtime_id}, '{start_time}', '{end_time}', {hall_id}, {film_id}, {price_coefficient});" + +# Генерация запросов на вставку сеансов +def generate_showtime_queries(): + showtime_id_counter = 1 + start_date = datetime(2023, 8, 1) + end_date = datetime(2023, 10, 1) + hall_id = 1 # Номер зала, который мы заполняем + film_ids = list(range(1, 11)) + random.shuffle(film_ids) + + # Словарь для отслеживания времени окончания последнего сеанса в каждом зале + end_times_by_hall = {} + + with open("showtime_insert_queries.sql", "w") as file: + while start_date <= end_date: + num_sessions = random.randint(5, 7) + interval = timedelta(hours=2) # Интервал между сеансами (2 часа) + + for _ in range(num_sessions): + film_id = film_ids.pop(0) if film_ids else random.randint(1, 10) + + # Поставим price_coefficient 1.2 для фильмов 4 и 5 + price_coefficient = 1.2 if film_id in [4, 5] else 1.0 + + # Время начала сеанса + start_time = start_date.replace(hour=10, minute=0, second=0) + + # Время окончания последнего сеанса в зале + last_end_time = end_times_by_hall.get(hall_id, start_time) + + # Если текущий сеанс начинается до окончания предыдущего, сдвигаем время начала + if start_time < last_end_time: + start_time = last_end_time + timedelta(hours=1) # Интервал в 1 час + + end_time = start_time + interval + + query = generate_showtime_query(showtime_id_counter, start_time, end_time, hall_id, film_id, price_coefficient) + file.write(query + "\n") + showtime_id_counter += 1 + + # Обновляем время окончания последнего сеанса в зале + end_times_by_hall[hall_id] = end_time + + # Переходим к следующему дню + start_date += timedelta(days=1) + +# Запуск генерации запросов +generate_showtime_queries() diff --git a/master/generated_data.txt b/master/generated_data.txt index cbbadc6..0a49b5b 100644 --- a/master/generated_data.txt +++ b/master/generated_data.txt @@ -1072,3 +1072,575 @@ SET email = CONCAT(LOWER(TRIM(first_name)), '.', LOWER(TRIM(last_name)), '@examp WHERE email IS NULL; +INSERT INTO Cinema (cinema_id, name, address, operating_hours_start, operating_hours_end, contact_number) VALUES (1, 'СинемаМакс Кировский', 'ул. Кирова, д.26, ТЦ Кировский', '08:00:00', '23:59:59', '89990000001'); +INSERT INTO Cinema (cinema_id, name, address, operating_hours_start, operating_hours_end, contact_number) VALUES (2, 'СинемаМакс Московский', 'шоссе Московское, д.2А, ТРК Московский', '10:00:00', '23:59:59', '89990000002'); +INSERT INTO Cinema (cinema_id, name, address, operating_hours_start, operating_hours_end, contact_number) VALUES (3, 'СинемаМакс Белуга', 'ул. Маковского, д.6, ТЦ Белуга', '08:00:00', '22:59:59', '89990000003'); + + +-- Добавление данных в таблицу Hall +INSERT INTO Hall (hall_id, seating_capacity, cinema_id) VALUES +-- Кинотеатр 1 +(1, 90, 1), +(2, 60, 1), +(3, 40, 1), +-- Кинотеатр 2 +(4, 50, 2), +(5, 30, 2), +(6, 50, 2), +(7, 50, 2), +-- Кинотеатр 3 +(8, 20, 3), +(9, 50, 3); + + +-- Вставка мест в зал №9 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('3090101', 1, 1, 1, 9), +('3090102', 2, 1, 1, 9), +('3090103', 3, 1, 1, 9), +('3090104', 4, 1, 1, 9), +('3090105', 5, 1, 1, 9), +('3090106', 6, 1, 1, 9), +('3090107', 7, 1, 1, 9), +('3090108', 8, 1, 1, 9), +('3090109', 9, 1, 1, 9), +('3090110', 10, 1, 1, 9), +-- Ряд 2 +('3090201', 1, 2, 1, 9), +('3090202', 2, 2, 1, 9), +('3090203', 3, 2, 1, 9), +('3090204', 4, 2, 1, 9), +('3090205', 5, 2, 1, 9), +('3090206', 6, 2, 1, 9), +('3090207', 7, 2, 1, 9), +('3090208', 8, 2, 1, 9), +('3090209', 9, 2, 1, 9), +('3090210', 10, 2, 1, 9), +-- Ряд 3 +('3090301', 1, 3, 1, 9), +('3090302', 2, 3, 1, 9), +('3090303', 3, 3, 1, 9), +('3090304', 4, 3, 1, 9), +('3090305', 5, 3, 1, 9), +('3090306', 6, 3, 1, 9), +('3090307', 7, 3, 1, 9), +('3090308', 8, 3, 1, 9), +('3090309', 9, 3, 1, 9), +('3090310', 10, 3, 1, 9), +-- Ряд 4 +('3090401', 1, 4, 1, 9), +('3090402', 2, 4, 1, 9), +('3090403', 3, 4, 1, 9), +('3090404', 4, 4, 1, 9), +('3090405', 5, 4, 1, 9), +('3090406', 6, 4, 1, 9), +('3090407', 7, 4, 1, 9), +('3090408', 8, 4, 1, 9), +('3090409', 9, 4, 1, 9), +('3090410', 10, 4, 1, 9), +-- Ряд 5 +('3090501', 1, 5, 1, 9), +('3090502', 2, 5, 1, 9), +('3090503', 3, 5, 1, 9), +('3090504', 4, 5, 1, 9), +('3090505', 5, 5, 1, 9), +('3090506', 6, 5, 1, 9), +('3090507', 7, 5, 1, 9), +('3090508', 8, 5, 1, 9), +('3090509', 9, 5, 1, 9), +('3090510', 10, 5, 1, 9); + + +-- Вставка мест в зал №8 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('3080101', 1, 1, 1.25, 8), +('3080102', 2, 1, 1.25, 8), +('3080103', 3, 1, 1.25, 8), +('3080104', 4, 1, 1.25, 8), +-- Ряд 2 +('3080201', 1, 2, 1.25, 8), +('3080202', 2, 2, 1.25, 8), +('3080203', 3, 2, 1.25, 8), +('3080204', 4, 2, 1.25, 8), +-- Ряд 3 +('3080301', 1, 3, 1.25, 8), +('3080302', 2, 3, 1.25, 8), +('3080303', 3, 3, 1.25, 8), +('3080304', 4, 3, 1.25, 8), +-- Ряд 4 +('3080401', 1, 4, 1.25, 8), +('3080402', 2, 4, 1.25, 8), +('3080403', 3, 4, 1.25, 8), +('3080404', 4, 4, 1.25, 8), +-- Ряд 5 +('3080501', 1, 5, 1.25, 8), +('3080502', 2, 5, 1.25, 8), +('3080503', 3, 5, 1.25, 8), +('3080504', 4, 5, 1.25, 8); + + +-- Вставка мест в зал №7 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('2070101', 1, 1, 1, 7), +('2070102', 2, 1, 1, 7), +('2070103', 3, 1, 1, 7), +('2070104', 4, 1, 1, 7), +('2070105', 5, 1, 1, 7), +('2070106', 6, 1, 1, 7), +('2070107', 7, 1, 1, 7), +('2070108', 8, 1, 1, 7), +('2070109', 9, 1, 1, 7), +('2070110', 10, 1, 1, 7), +-- Ряд 2 +('2070201', 1, 2, 1, 7), +('2070202', 2, 2, 1, 7), +('2070203', 3, 2, 1, 7), +('2070204', 4, 2, 1, 7), +('2070205', 5, 2, 1, 7), +('2070206', 6, 2, 1, 7), +('2070207', 7, 2, 1, 7), +('2070208', 8, 2, 1, 7), +('2070209', 9, 2, 1, 7), +('2070210', 10, 2, 1, 7), +-- Ряд 3 +('2070301', 1, 3, 1, 7), +('2070302', 2, 3, 1, 7), +('2070303', 3, 3, 1, 7), +('2070304', 4, 3, 1, 7), +('2070305', 5, 3, 1, 7), +('2070306', 6, 3, 1, 7), +('2070307', 7, 3, 1, 7), +('2070308', 8, 3, 1, 7), +('2070309', 9, 3, 1, 7), +('2070310', 10, 3, 1, 7), +-- Ряд 4 +('2070401', 1, 4, 1, 7), +('2070402', 2, 4, 1, 7), +('2070403', 3, 4, 1, 7), +('2070404', 4, 4, 1, 7), +('2070405', 5, 4, 1, 7), +('2070406', 6, 4, 1, 7), +('2070407', 7, 4, 1, 7), +('2070408', 8, 4, 1, 7), +('2070409', 9, 4, 1, 7), +('2070410', 10, 4, 1, 7), +-- Ряд 5 +('2070501', 1, 5, 1, 7), +('2070502', 2, 5, 1, 7), +('2070503', 3, 5, 1, 7), +('2070504', 4, 5, 1, 7), +('2070505', 5, 5, 1, 7), +('2070506', 6, 5, 1, 7), +('2070507', 7, 5, 1, 7), +('2070508', 8, 5, 1, 7), +('2070509', 9, 5, 1, 7), +('2070510', 10, 5, 1, 7); + + +-- Вставка мест в зал №6 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('2060101', 1, 1, 1, 6), +('2060102', 2, 1, 1, 6), +('2060103', 3, 1, 1, 6), +('2060104', 4, 1, 1, 6), +('2060105', 5, 1, 1, 6), +('2060106', 6, 1, 1, 6), +('2060107', 7, 1, 1, 6), +('2060108', 8, 1, 1, 6), +('2060109', 9, 1, 1, 6), +('2060110', 10, 1, 1, 6), +-- Ряд 2 +('2060201', 1, 2, 1, 6), +('2060202', 2, 2, 1, 6), +('2060203', 3, 2, 1, 6), +('2060204', 4, 2, 1, 6), +('2060205', 5, 2, 1, 6), +('2060206', 6, 2, 1, 6), +('2060207', 7, 2, 1, 6), +('2060208', 8, 2, 1, 6), +('2060209', 9, 2, 1, 6), +('2060210', 10, 2, 1, 6), +-- Ряд 3 +('2060301', 1, 3, 1, 6), +('2060302', 2, 3, 1, 6), +('2060303', 3, 3, 1, 6), +('2060304', 4, 3, 1, 6), +('2060305', 5, 3, 1, 6), +('2060306', 6, 3, 1, 6), +('2060307', 7, 3, 1, 6), +('2060308', 8, 3, 1, 6), +('2060309', 9, 3, 1, 6), +('2060310', 10, 3, 1, 6), +-- Ряд 4 +('2060401', 1, 4, 1, 6), +('2060402', 2, 4, 1, 6), +('2060403', 3, 4, 1, 6), +('2060404', 4, 4, 1, 6), +('2060405', 5, 4, 1, 6), +('2060406', 6, 4, 1, 6), +('2060407', 7, 4, 1, 6), +('2060408', 8, 4, 1, 6), +('2060409', 9, 4, 1, 6), +('2060410', 10, 4, 1, 6), +-- Ряд 5 +('2060501', 1, 5, 1, 6), +('2060502', 2, 5, 1, 6), +('2060503', 3, 5, 1, 6), +('2060504', 4, 5, 1, 6), +('2060505', 5, 5, 1, 6), +('2060506', 6, 5, 1, 6), +('2060507', 7, 5, 1, 6), +('2060508', 8, 5, 1, 6), +('2060509', 9, 5, 1, 6), +('2060510', 10, 5, 1, 6); + + +-- Вставка мест в зал №5 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('2050101', 1, 1, 1.1, 5), +('2050102', 2, 1, 1.1, 5), +('2050103', 3, 1, 1.1, 5), +('2050104', 4, 1, 1.1, 5), +('2050105', 5, 1, 1.1, 5), +('2050106', 6, 1, 1.1, 5), +-- Ряд 2 +('2050201', 1, 2, 1.1, 5), +('2050202', 2, 2, 1.1, 5), +('2050203', 3, 2, 1.1, 5), +('2050204', 4, 2, 1.1, 5), +('2050205', 5, 2, 1.1, 5), +('2050206', 6, 2, 1.1, 5), +-- Ряд 3 +('2050301', 1, 3, 1.1, 5), +('2050302', 2, 3, 1.1, 5), +('2050303', 3, 3, 1.1, 5), +('2050304', 4, 3, 1.1, 5), +('2050305', 5, 3, 1.1, 5), +('2050306', 6, 3, 1.1, 5), +-- Ряд 4 +('2050401', 1, 4, 1.1, 5), +('2050402', 2, 4, 1.1, 5), +('2050403', 3, 4, 1.1, 5), +('2050404', 4, 4, 1.1, 5), +('2050405', 5, 4, 1.1, 5), +('2050406', 6, 4, 1.1, 5), +-- Ряд 5 +('2050501', 1, 5, 1.1, 5), +('2050502', 2, 5, 1.1, 5), +('2050503', 3, 5, 1.1, 5), +('2050504', 4, 5, 1.1, 5), +('2050505', 5, 5, 1.1, 5), +('2050506', 6, 5, 1.1, 5); + + +-- Вставка мест в зал №4 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('2040101', 1, 1, 1, 4), +('2040102', 2, 1, 1, 4), +('2040103', 3, 1, 1, 4), +('2040104', 4, 1, 1, 4), +('2040105', 5, 1, 1, 4), +('2040106', 6, 1, 1, 4), +('2040107', 7, 1, 1, 4), +('2040108', 8, 1, 1, 4), +('2040109', 9, 1, 1, 4), +('2040110', 10, 1, 1, 4), +-- Ряд 2 +('2040201', 1, 2, 1, 4), +('2040202', 2, 2, 1, 4), +('2040203', 3, 2, 1, 4), +('2040204', 4, 2, 1, 4), +('2040205', 5, 2, 1, 4), +('2040206', 6, 2, 1, 4), +('2040207', 7, 2, 1, 4), +('2040208', 8, 2, 1, 4), +('2040209', 9, 2, 1, 4), +('2040210', 10, 2, 1, 4), +-- Ряд 3 +('2040301', 1, 3, 1, 4), +('2040302', 2, 3, 1, 4), +('2040303', 3, 3, 1, 4), +('2040304', 4, 3, 1, 4), +('2040305', 5, 3, 1, 4), +('2040306', 6, 3, 1, 4), +('2040307', 7, 3, 1, 4), +('2040308', 8, 3, 1, 4), +('2040309', 9, 3, 1, 4), +('2040310', 10, 3, 1, 4), +-- Ряд 4 +('2040401', 1, 4, 1, 4), +('2040402', 2, 4, 1, 4), +('2040403', 3, 4, 1, 4), +('2040404', 4, 4, 1, 4), +('2040405', 5, 4, 1, 4), +('2040406', 6, 4, 1, 4), +('2040407', 7, 4, 1, 4), +('2040408', 8, 4, 1, 4), +('2040409', 9, 4, 1, 4), +('2040410', 10, 4, 1, 4), +-- Ряд 5 +('2040501', 1, 5, 1, 4), +('2040502', 2, 5, 1, 4), +('2040503', 3, 5, 1, 4), +('2040504', 4, 5, 1, 4), +('2040505', 5, 5, 1, 4), +('2040506', 6, 5, 1, 4), +('2040507', 7, 5, 1, 4), +('2040508', 8, 5, 1, 4), +('2040509', 9, 5, 1, 4), +('2040510', 10, 5, 1, 4); + + +-- Вставка мест в зал №3 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('1030101', 1, 1, 1, 3), +('1030102', 2, 1, 1, 3), +('1030103', 3, 1, 1, 3), +('1030104', 4, 1, 1, 3), +('1030105', 5, 1, 1, 3), +('1030106', 6, 1, 1, 3), +('1030107', 7, 1, 1, 3), +('1030108', 8, 1, 1, 3), +-- Ряд 2 +('1030201', 1, 2, 1, 3), +('1030202', 2, 2, 1, 3), +('1030203', 3, 2, 1.1, 3), +('1030204', 4, 2, 1.1, 3), +('1030205', 5, 2, 1, 3), +('1030206', 6, 2, 1, 3), +('1030207', 7, 2, 1, 3), +('1030208', 8, 2, 1, 3), +-- Ряд 3 +('1030301', 1, 3, 1, 3), +('1030302', 2, 3, 1, 3), +('1030303', 3, 3, 1.1, 3), +('1030304', 4, 3, 1.1, 3), +('1030305', 5, 3, 1.1, 3), +('1030306', 6, 3, 1.1, 3), +('1030307', 7, 3, 1, 3), +('1030308', 8, 3, 1, 3), +-- Ряд 4 +('1030401', 1, 4, 1, 3), +('1030402', 2, 4, 1, 3), +('1030403', 3, 4, 1.1, 3), +('1030404', 4, 4, 1.1, 3), +('1030405', 5, 4, 1.1, 3), +('1030406', 6, 4, 1.1, 3), +('1030407', 7, 4, 1, 3), +('1030408', 8, 4, 1, 3), +-- Ряд 5 +('1030501', 1, 5, 1, 3), +('1030502', 2, 5, 1, 3), +('1030503', 3, 5, 1, 3), +('1030504', 4, 5, 1, 3), +('1030505', 5, 5, 1, 3), +('1030506', 6, 5, 1, 3), +('1030507', 7, 5, 1, 3), +('1030508', 8, 5, 1, 3); + + +-- Вставка мест в зал №2 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('1020101', 1, 1, 1, 2), +('1020102', 2, 1, 1, 2), +('1020103', 3, 1, 1, 2), +('1020104', 4, 1, 1, 2), +('1020105', 5, 1, 1, 2), +('1020106', 6, 1, 1, 2), +('1020107', 7, 1, 1, 2), +('1020108', 8, 1, 1, 2), +('1020109', 9, 1, 1, 2), +('1020110', 10, 1, 1, 2), +('1020111', 11, 1, 1, 2), +('1020112', 12, 1, 1, 2), +-- Ряд 2 +('1020201', 1, 2, 1, 2), +('1020202', 2, 2, 1, 2), +('1020203', 3, 2, 1, 2), +('1020204', 4, 2, 1, 2), +('1020205', 5, 2, 1.1, 2), +('1020206', 6, 2, 1.1, 2), +('1020207', 7, 2, 1.1, 2), +('1020208', 8, 2, 1.1, 2), +('1020209', 9, 2, 1, 2), +('1020210', 10, 2, 1, 2), +('1020211', 11, 2, 1, 2), +('1020212', 12, 2, 1, 2), +-- Ряд 3 +('1020301', 1, 3, 1, 2), +('1020302', 2, 3, 1, 2), +('1020303', 3, 3, 1, 2), +('1020304', 4, 3, 1, 2), +('1020305', 5, 3, 1.1, 2), +('1020306', 6, 3, 1.1, 2), +('1020307', 7, 3, 1.1, 2), +('1020308', 8, 3, 1.1, 2), +('1020309', 9, 3, 1, 2), +('1020310', 10, 3, 1, 2), +('1020311', 11, 3, 1, 2), +('1020312', 12, 3, 1, 2), +-- Ряд 4 +('1020401', 1, 4, 1, 2), +('1020402', 2, 4, 1, 2), +('1020403', 3, 4, 1, 2), +('1020404', 4, 4, 1, 2), +('1020405', 5, 4, 1, 2), +('1020406', 6, 4, 1, 2), +('1020407', 7, 4, 1, 2), +('1020408', 8, 4, 1, 2), +('1020409', 9, 4, 1, 2), +('1020410', 10, 4, 1, 2), +('1020411', 11, 4, 1, 2), +('1020412', 12, 4, 1, 2), +-- Ряд 5 +('1020501', 1, 5, 1, 2), +('1020502', 2, 5, 1, 2), +('1020503', 3, 5, 1, 2), +('1020504', 4, 5, 1, 2), +('1020505', 5, 5, 1, 2), +('1020506', 6, 5, 1, 2), +('1020507', 7, 5, 1, 2), +('1020508', 8, 5, 1, 2), +('1020509', 9, 5, 1, 2), +('1020510', 10, 5, 1, 2), +('1020511', 11, 5, 1, 2), +('1020512', 12, 5, 1, 2); + + +-- Вставка мест в зал №1 +INSERT INTO Seat (seat_id, seat_number, `row_number`, class_coefficient, hall_id) +VALUES +-- Ряд 1 +('1010101', 1, 1, 1.0, 1), +('1010102', 2, 1, 1.0, 1), +('1010103', 3, 1, 1.0, 1), +('1010104', 4, 1, 1.0, 1), +('1010105', 5, 1, 1.0, 1), +('1010106', 6, 1, 1.0, 1), +('1010107', 7, 1, 1.0, 1), +('1010108', 8, 1, 1.0, 1), +('1010109', 9, 1, 1.0, 1), +('1010110', 10, 1, 1.0, 1), +('1010111', 11, 1, 1.0, 1), +('1010112', 12, 1, 1.0, 1), +('1010113', 13, 1, 1.0, 1), +('1010114', 14, 1, 1.0, 1), +('1010115', 15, 1, 1.0, 1), +-- Ряд 2 +('1010201', 1, 2, 1.0, 1), +('1010202', 2, 2, 1.0, 1), +('1010203', 3, 2, 1.0, 1), +('1010204', 4, 2, 1.0, 1), +('1010205', 5, 2, 1.1, 1), +('1010206', 6, 2, 1.1, 1), +('1010207', 7, 2, 1.1, 1), +('1010208', 8, 2, 1.1, 1), +('1010209', 9, 2, 1.1, 1), +('1010210', 10, 2, 1.1, 1), +('1010211', 11, 2, 1.0, 1), +('1010212', 12, 2, 1.0, 1), +('1010213', 13, 2, 1.0, 1), +('1010214', 14, 2, 1.0, 1), +('1010215', 15, 2, 1.0, 1), +-- Ряд 3 +('1010301', 1, 3, 1.0, 1), +('1010302', 2, 3, 1.0, 1), +('1010303', 3, 3, 1.0, 1), +('1010304', 4, 3, 1.0, 1), +('1010305', 5, 3, 1.1, 1), +('1010306', 6, 3, 1.1, 1), +('1010307', 7, 3, 1.1, 1), +('1010308', 8, 3, 1.1, 1), +('1010309', 9, 3, 1.1, 1), +('1010310', 10, 3, 1.1, 1), +('1010311', 11, 3, 1.0, 1), +('1010312', 12, 3, 1.0, 1), +('1010313', 13, 3, 1.0, 1), +('1010314', 14, 3, 1.0, 1), +('1010315', 15, 3, 1.0, 1), +-- Ряд 4 +('1010401', 1, 4, 1.0, 1), +('1010402', 2, 4, 1.0, 1), +('1010403', 3, 4, 1.0, 1), +('1010404', 4, 4, 1.0, 1), +('1010405', 5, 4, 1.0, 1), +('1010406', 6, 4, 1.0, 1), +('1010407', 7, 4, 1.0, 1), +('1010408', 8, 4, 1.0, 1), +('1010409', 9, 4, 1.0, 1), +('1010410', 10, 4, 1.0, 1), +('1010411', 11, 4, 1.0, 1), +('1010412', 12, 4, 1.0, 1), +('1010413', 13, 4, 1.0, 1), +('1010414', 14, 4, 1.0, 1), +('1010415', 15, 4, 1.0, 1), +-- Ряд 5 +('1010501', 1, 5, 1.0, 1), +('1010502', 2, 5, 1.0, 1), +('1010503', 3, 5, 1.0, 1), +('1010504', 4, 5, 1.0, 1), +('1010505', 5, 5, 1.0, 1), +('1010506', 6, 5, 1.0, 1), +('1010507', 7, 5, 1.0, 1), +('1010508', 8, 5, 1.0, 1), +('1010509', 9, 5, 1.0, 1), +('1010510', 10, 5, 1.0, 1), +('1010511', 11, 5, 1.0, 1), +('1010512', 12, 5, 1.0, 1), +('1010513', 13, 5, 1.0, 1), +('1010514', 14, 5, 1.0, 1), +('1010515', 15, 5, 1.0, 1), +-- Ряд 6 +('1010601', 1, 6, 1.0, 1), +('1010602', 2, 6, 1.0, 1), +('1010603', 3, 6, 1.0, 1), +('1010604', 4, 6, 1.0, 1), +('1010605', 5, 6, 1.0, 1), +('1010606', 6, 6, 1.0, 1), +('1010607', 7, 6, 1.0, 1), +('1010608', 8, 6, 1.0, 1), +('1010609', 9, 6, 1.0, 1), +('1010610', 10, 6, 1.0, 1), +('1010611', 11, 6, 1.0, 1), +('1010612', 12, 6, 1.0, 1), +('1010613', 13, 6, 1.0, 1), +('1010614', 14, 6, 1.0, 1), +('1010615', 15, 6, 1.0, 1); + + +-- Вставка данных в таблицу Seller +INSERT INTO Seller (seller_id, first_name, last_name, contact_number, hire_date, salary, status, cinema_id) +VALUES +-- Сотрудники +(1001, 'Иван', 'Бримстонов', '89759274651', '2023-01-01', 30000.0, 'Активен', 1), +(1002, 'Петр', 'Джетов', '89867392657', '2023-02-15', 32000.0, 'Активен', 1), +(1003, 'Мария', 'Рейзова', '89875693859', '2023-03-10', 28000.0, 'Активен', 2), +(1004, 'Анна', 'Сейдж', '89857296758', '2023-04-05', 31000.0, 'Активен', 2), +(1005, 'Александр', 'Сайфер', '8975849003', '2023-05-20', 33000.0, 'Активен', 3), +(1006, 'Ксения', 'Скаева', '89768001746', '2023-05-20', 33000.0, 'Активен', 3), +-- Автоматы для самообслуживания +(11, 'Автомат 1', 'СинемаМакс Кировский', NULL, NULL, NULL, 'Активен', 1), +(12, 'Автомат 2', 'СинемаМакс Кировский', NULL, NULL, NULL, 'Активен', 1), +(21, 'Автомат 1', 'СинемаМакс Московский', NULL, NULL, NULL, 'Активен', 2), +(22, 'Автомат 2', 'СинемаМакс Московский', NULL, NULL, NULL, 'Активен', 2), +(31, 'Автомат 1', 'СинемаМакс Белуга', NULL, NULL, NULL, 'Активен', 3), +-- Сайт +(1, 'Онлайн (Сайт)', 'Продажа', NULL, NULL, NULL, 'Активен', 1); + + diff --git a/showtime_insert_queries.sql b/showtime_insert_queries.sql new file mode 100644 index 0000000..67316bb --- /dev/null +++ b/showtime_insert_queries.sql @@ -0,0 +1,372 @@ +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (1, '2023-08-01 10:00:00', '2023-08-01 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (2, '2023-08-01 13:00:00', '2023-08-01 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (3, '2023-08-01 16:00:00', '2023-08-01 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (4, '2023-08-01 19:00:00', '2023-08-01 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (5, '2023-08-01 22:00:00', '2023-08-02 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (6, '2023-08-02 01:00:00', '2023-08-02 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (7, '2023-08-02 04:00:00', '2023-08-02 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (8, '2023-08-02 10:00:00', '2023-08-02 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (9, '2023-08-02 13:00:00', '2023-08-02 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (10, '2023-08-02 16:00:00', '2023-08-02 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (11, '2023-08-02 19:00:00', '2023-08-02 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (12, '2023-08-02 22:00:00', '2023-08-03 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (13, '2023-08-03 10:00:00', '2023-08-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (14, '2023-08-03 13:00:00', '2023-08-03 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (15, '2023-08-03 16:00:00', '2023-08-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (16, '2023-08-03 19:00:00', '2023-08-03 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (17, '2023-08-03 22:00:00', '2023-08-04 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (18, '2023-08-04 10:00:00', '2023-08-04 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (19, '2023-08-04 13:00:00', '2023-08-04 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (20, '2023-08-04 16:00:00', '2023-08-04 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (21, '2023-08-04 19:00:00', '2023-08-04 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (22, '2023-08-04 22:00:00', '2023-08-05 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (23, '2023-08-05 01:00:00', '2023-08-05 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (24, '2023-08-05 10:00:00', '2023-08-05 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (25, '2023-08-05 13:00:00', '2023-08-05 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (26, '2023-08-05 16:00:00', '2023-08-05 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (27, '2023-08-05 19:00:00', '2023-08-05 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (28, '2023-08-05 22:00:00', '2023-08-06 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (29, '2023-08-06 10:00:00', '2023-08-06 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (30, '2023-08-06 13:00:00', '2023-08-06 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (31, '2023-08-06 16:00:00', '2023-08-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (32, '2023-08-06 19:00:00', '2023-08-06 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (33, '2023-08-06 22:00:00', '2023-08-07 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (34, '2023-08-07 01:00:00', '2023-08-07 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (35, '2023-08-07 04:00:00', '2023-08-07 06:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (36, '2023-08-07 10:00:00', '2023-08-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (37, '2023-08-07 13:00:00', '2023-08-07 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (38, '2023-08-07 16:00:00', '2023-08-07 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (39, '2023-08-07 19:00:00', '2023-08-07 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (40, '2023-08-07 22:00:00', '2023-08-08 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (41, '2023-08-08 01:00:00', '2023-08-08 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (42, '2023-08-08 04:00:00', '2023-08-08 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (43, '2023-08-08 10:00:00', '2023-08-08 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (44, '2023-08-08 13:00:00', '2023-08-08 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (45, '2023-08-08 16:00:00', '2023-08-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (46, '2023-08-08 19:00:00', '2023-08-08 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (47, '2023-08-08 22:00:00', '2023-08-09 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (48, '2023-08-09 10:00:00', '2023-08-09 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (49, '2023-08-09 13:00:00', '2023-08-09 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (50, '2023-08-09 16:00:00', '2023-08-09 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (51, '2023-08-09 19:00:00', '2023-08-09 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (52, '2023-08-09 22:00:00', '2023-08-10 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (53, '2023-08-10 01:00:00', '2023-08-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (54, '2023-08-10 04:00:00', '2023-08-10 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (55, '2023-08-10 10:00:00', '2023-08-10 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (56, '2023-08-10 13:00:00', '2023-08-10 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (57, '2023-08-10 16:00:00', '2023-08-10 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (58, '2023-08-10 19:00:00', '2023-08-10 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (59, '2023-08-10 22:00:00', '2023-08-11 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (60, '2023-08-11 10:00:00', '2023-08-11 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (61, '2023-08-11 13:00:00', '2023-08-11 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (62, '2023-08-11 16:00:00', '2023-08-11 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (63, '2023-08-11 19:00:00', '2023-08-11 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (64, '2023-08-11 22:00:00', '2023-08-12 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (65, '2023-08-12 01:00:00', '2023-08-12 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (66, '2023-08-12 04:00:00', '2023-08-12 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (67, '2023-08-12 10:00:00', '2023-08-12 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (68, '2023-08-12 13:00:00', '2023-08-12 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (69, '2023-08-12 16:00:00', '2023-08-12 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (70, '2023-08-12 19:00:00', '2023-08-12 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (71, '2023-08-12 22:00:00', '2023-08-13 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (72, '2023-08-13 01:00:00', '2023-08-13 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (73, '2023-08-13 04:00:00', '2023-08-13 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (74, '2023-08-13 10:00:00', '2023-08-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (75, '2023-08-13 13:00:00', '2023-08-13 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (76, '2023-08-13 16:00:00', '2023-08-13 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (77, '2023-08-13 19:00:00', '2023-08-13 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (78, '2023-08-13 22:00:00', '2023-08-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (79, '2023-08-14 10:00:00', '2023-08-14 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (80, '2023-08-14 13:00:00', '2023-08-14 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (81, '2023-08-14 16:00:00', '2023-08-14 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (82, '2023-08-14 19:00:00', '2023-08-14 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (83, '2023-08-14 22:00:00', '2023-08-15 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (84, '2023-08-15 01:00:00', '2023-08-15 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (85, '2023-08-15 10:00:00', '2023-08-15 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (86, '2023-08-15 13:00:00', '2023-08-15 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (87, '2023-08-15 16:00:00', '2023-08-15 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (88, '2023-08-15 19:00:00', '2023-08-15 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (89, '2023-08-15 22:00:00', '2023-08-16 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (90, '2023-08-16 01:00:00', '2023-08-16 03:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (91, '2023-08-16 04:00:00', '2023-08-16 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (92, '2023-08-16 10:00:00', '2023-08-16 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (93, '2023-08-16 13:00:00', '2023-08-16 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (94, '2023-08-16 16:00:00', '2023-08-16 18:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (95, '2023-08-16 19:00:00', '2023-08-16 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (96, '2023-08-16 22:00:00', '2023-08-17 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (97, '2023-08-17 10:00:00', '2023-08-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (98, '2023-08-17 13:00:00', '2023-08-17 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (99, '2023-08-17 16:00:00', '2023-08-17 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (100, '2023-08-17 19:00:00', '2023-08-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (101, '2023-08-17 22:00:00', '2023-08-18 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (102, '2023-08-18 01:00:00', '2023-08-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (103, '2023-08-18 10:00:00', '2023-08-18 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (104, '2023-08-18 13:00:00', '2023-08-18 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (105, '2023-08-18 16:00:00', '2023-08-18 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (106, '2023-08-18 19:00:00', '2023-08-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (107, '2023-08-18 22:00:00', '2023-08-19 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (108, '2023-08-19 01:00:00', '2023-08-19 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (109, '2023-08-19 10:00:00', '2023-08-19 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (110, '2023-08-19 13:00:00', '2023-08-19 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (111, '2023-08-19 16:00:00', '2023-08-19 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (112, '2023-08-19 19:00:00', '2023-08-19 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (113, '2023-08-19 22:00:00', '2023-08-20 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (114, '2023-08-20 01:00:00', '2023-08-20 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (115, '2023-08-20 10:00:00', '2023-08-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (116, '2023-08-20 13:00:00', '2023-08-20 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (117, '2023-08-20 16:00:00', '2023-08-20 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (118, '2023-08-20 19:00:00', '2023-08-20 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (119, '2023-08-20 22:00:00', '2023-08-21 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (120, '2023-08-21 10:00:00', '2023-08-21 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (121, '2023-08-21 13:00:00', '2023-08-21 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (122, '2023-08-21 16:00:00', '2023-08-21 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (123, '2023-08-21 19:00:00', '2023-08-21 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (124, '2023-08-21 22:00:00', '2023-08-22 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (125, '2023-08-22 10:00:00', '2023-08-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (126, '2023-08-22 13:00:00', '2023-08-22 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (127, '2023-08-22 16:00:00', '2023-08-22 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (128, '2023-08-22 19:00:00', '2023-08-22 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (129, '2023-08-22 22:00:00', '2023-08-23 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (130, '2023-08-23 10:00:00', '2023-08-23 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (131, '2023-08-23 13:00:00', '2023-08-23 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (132, '2023-08-23 16:00:00', '2023-08-23 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (133, '2023-08-23 19:00:00', '2023-08-23 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (134, '2023-08-23 22:00:00', '2023-08-24 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (135, '2023-08-24 01:00:00', '2023-08-24 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (136, '2023-08-24 10:00:00', '2023-08-24 12:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (137, '2023-08-24 13:00:00', '2023-08-24 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (138, '2023-08-24 16:00:00', '2023-08-24 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (139, '2023-08-24 19:00:00', '2023-08-24 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (140, '2023-08-24 22:00:00', '2023-08-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (141, '2023-08-25 01:00:00', '2023-08-25 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (142, '2023-08-25 10:00:00', '2023-08-25 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (143, '2023-08-25 13:00:00', '2023-08-25 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (144, '2023-08-25 16:00:00', '2023-08-25 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (145, '2023-08-25 19:00:00', '2023-08-25 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (146, '2023-08-25 22:00:00', '2023-08-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (147, '2023-08-26 01:00:00', '2023-08-26 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (148, '2023-08-26 04:00:00', '2023-08-26 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (149, '2023-08-26 10:00:00', '2023-08-26 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (150, '2023-08-26 13:00:00', '2023-08-26 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (151, '2023-08-26 16:00:00', '2023-08-26 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (152, '2023-08-26 19:00:00', '2023-08-26 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (153, '2023-08-26 22:00:00', '2023-08-27 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (154, '2023-08-27 01:00:00', '2023-08-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (155, '2023-08-27 10:00:00', '2023-08-27 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (156, '2023-08-27 13:00:00', '2023-08-27 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (157, '2023-08-27 16:00:00', '2023-08-27 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (158, '2023-08-27 19:00:00', '2023-08-27 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (159, '2023-08-27 22:00:00', '2023-08-28 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (160, '2023-08-28 01:00:00', '2023-08-28 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (161, '2023-08-28 04:00:00', '2023-08-28 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (162, '2023-08-28 10:00:00', '2023-08-28 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (163, '2023-08-28 13:00:00', '2023-08-28 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (164, '2023-08-28 16:00:00', '2023-08-28 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (165, '2023-08-28 19:00:00', '2023-08-28 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (166, '2023-08-28 22:00:00', '2023-08-29 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (167, '2023-08-29 01:00:00', '2023-08-29 03:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (168, '2023-08-29 04:00:00', '2023-08-29 06:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (169, '2023-08-29 10:00:00', '2023-08-29 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (170, '2023-08-29 13:00:00', '2023-08-29 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (171, '2023-08-29 16:00:00', '2023-08-29 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (172, '2023-08-29 19:00:00', '2023-08-29 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (173, '2023-08-29 22:00:00', '2023-08-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (174, '2023-08-30 01:00:00', '2023-08-30 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (175, '2023-08-30 10:00:00', '2023-08-30 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (176, '2023-08-30 13:00:00', '2023-08-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (177, '2023-08-30 16:00:00', '2023-08-30 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (178, '2023-08-30 19:00:00', '2023-08-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (179, '2023-08-30 22:00:00', '2023-08-31 00:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (180, '2023-08-31 01:00:00', '2023-08-31 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (181, '2023-08-31 10:00:00', '2023-08-31 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (182, '2023-08-31 13:00:00', '2023-08-31 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (183, '2023-08-31 16:00:00', '2023-08-31 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (184, '2023-08-31 19:00:00', '2023-08-31 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (185, '2023-08-31 22:00:00', '2023-09-01 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (186, '2023-09-01 01:00:00', '2023-09-01 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (187, '2023-09-01 10:00:00', '2023-09-01 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (188, '2023-09-01 13:00:00', '2023-09-01 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (189, '2023-09-01 16:00:00', '2023-09-01 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (190, '2023-09-01 19:00:00', '2023-09-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (191, '2023-09-01 22:00:00', '2023-09-02 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (192, '2023-09-02 10:00:00', '2023-09-02 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (193, '2023-09-02 13:00:00', '2023-09-02 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (194, '2023-09-02 16:00:00', '2023-09-02 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (195, '2023-09-02 19:00:00', '2023-09-02 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (196, '2023-09-02 22:00:00', '2023-09-03 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (197, '2023-09-03 10:00:00', '2023-09-03 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (198, '2023-09-03 13:00:00', '2023-09-03 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (199, '2023-09-03 16:00:00', '2023-09-03 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (200, '2023-09-03 19:00:00', '2023-09-03 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (201, '2023-09-03 22:00:00', '2023-09-04 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (202, '2023-09-04 01:00:00', '2023-09-04 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (203, '2023-09-04 10:00:00', '2023-09-04 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (204, '2023-09-04 13:00:00', '2023-09-04 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (205, '2023-09-04 16:00:00', '2023-09-04 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (206, '2023-09-04 19:00:00', '2023-09-04 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (207, '2023-09-04 22:00:00', '2023-09-05 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (208, '2023-09-05 01:00:00', '2023-09-05 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (209, '2023-09-05 04:00:00', '2023-09-05 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (210, '2023-09-05 10:00:00', '2023-09-05 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (211, '2023-09-05 13:00:00', '2023-09-05 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (212, '2023-09-05 16:00:00', '2023-09-05 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (213, '2023-09-05 19:00:00', '2023-09-05 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (214, '2023-09-05 22:00:00', '2023-09-06 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (215, '2023-09-06 10:00:00', '2023-09-06 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (216, '2023-09-06 13:00:00', '2023-09-06 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (217, '2023-09-06 16:00:00', '2023-09-06 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (218, '2023-09-06 19:00:00', '2023-09-06 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (219, '2023-09-06 22:00:00', '2023-09-07 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (220, '2023-09-07 01:00:00', '2023-09-07 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (221, '2023-09-07 04:00:00', '2023-09-07 06:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (222, '2023-09-07 10:00:00', '2023-09-07 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (223, '2023-09-07 13:00:00', '2023-09-07 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (224, '2023-09-07 16:00:00', '2023-09-07 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (225, '2023-09-07 19:00:00', '2023-09-07 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (226, '2023-09-07 22:00:00', '2023-09-08 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (227, '2023-09-08 10:00:00', '2023-09-08 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (228, '2023-09-08 13:00:00', '2023-09-08 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (229, '2023-09-08 16:00:00', '2023-09-08 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (230, '2023-09-08 19:00:00', '2023-09-08 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (231, '2023-09-08 22:00:00', '2023-09-09 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (232, '2023-09-09 01:00:00', '2023-09-09 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (233, '2023-09-09 10:00:00', '2023-09-09 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (234, '2023-09-09 13:00:00', '2023-09-09 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (235, '2023-09-09 16:00:00', '2023-09-09 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (236, '2023-09-09 19:00:00', '2023-09-09 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (237, '2023-09-09 22:00:00', '2023-09-10 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (238, '2023-09-10 01:00:00', '2023-09-10 03:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (239, '2023-09-10 10:00:00', '2023-09-10 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (240, '2023-09-10 13:00:00', '2023-09-10 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (241, '2023-09-10 16:00:00', '2023-09-10 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (242, '2023-09-10 19:00:00', '2023-09-10 21:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (243, '2023-09-10 22:00:00', '2023-09-11 00:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (244, '2023-09-11 01:00:00', '2023-09-11 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (245, '2023-09-11 10:00:00', '2023-09-11 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (246, '2023-09-11 13:00:00', '2023-09-11 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (247, '2023-09-11 16:00:00', '2023-09-11 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (248, '2023-09-11 19:00:00', '2023-09-11 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (249, '2023-09-11 22:00:00', '2023-09-12 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (250, '2023-09-12 01:00:00', '2023-09-12 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (251, '2023-09-12 04:00:00', '2023-09-12 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (252, '2023-09-12 10:00:00', '2023-09-12 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (253, '2023-09-12 13:00:00', '2023-09-12 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (254, '2023-09-12 16:00:00', '2023-09-12 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (255, '2023-09-12 19:00:00', '2023-09-12 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (256, '2023-09-12 22:00:00', '2023-09-13 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (257, '2023-09-13 10:00:00', '2023-09-13 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (258, '2023-09-13 13:00:00', '2023-09-13 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (259, '2023-09-13 16:00:00', '2023-09-13 18:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (260, '2023-09-13 19:00:00', '2023-09-13 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (261, '2023-09-13 22:00:00', '2023-09-14 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (262, '2023-09-14 01:00:00', '2023-09-14 03:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (263, '2023-09-14 10:00:00', '2023-09-14 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (264, '2023-09-14 13:00:00', '2023-09-14 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (265, '2023-09-14 16:00:00', '2023-09-14 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (266, '2023-09-14 19:00:00', '2023-09-14 21:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (267, '2023-09-14 22:00:00', '2023-09-15 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (268, '2023-09-15 10:00:00', '2023-09-15 12:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (269, '2023-09-15 13:00:00', '2023-09-15 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (270, '2023-09-15 16:00:00', '2023-09-15 18:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (271, '2023-09-15 19:00:00', '2023-09-15 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (272, '2023-09-15 22:00:00', '2023-09-16 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (273, '2023-09-16 01:00:00', '2023-09-16 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (274, '2023-09-16 10:00:00', '2023-09-16 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (275, '2023-09-16 13:00:00', '2023-09-16 15:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (276, '2023-09-16 16:00:00', '2023-09-16 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (277, '2023-09-16 19:00:00', '2023-09-16 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (278, '2023-09-16 22:00:00', '2023-09-17 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (279, '2023-09-17 01:00:00', '2023-09-17 03:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (280, '2023-09-17 04:00:00', '2023-09-17 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (281, '2023-09-17 10:00:00', '2023-09-17 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (282, '2023-09-17 13:00:00', '2023-09-17 15:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (283, '2023-09-17 16:00:00', '2023-09-17 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (284, '2023-09-17 19:00:00', '2023-09-17 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (285, '2023-09-17 22:00:00', '2023-09-18 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (286, '2023-09-18 01:00:00', '2023-09-18 03:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (287, '2023-09-18 10:00:00', '2023-09-18 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (288, '2023-09-18 13:00:00', '2023-09-18 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (289, '2023-09-18 16:00:00', '2023-09-18 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (290, '2023-09-18 19:00:00', '2023-09-18 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (291, '2023-09-18 22:00:00', '2023-09-19 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (292, '2023-09-19 01:00:00', '2023-09-19 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (293, '2023-09-19 10:00:00', '2023-09-19 12:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (294, '2023-09-19 13:00:00', '2023-09-19 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (295, '2023-09-19 16:00:00', '2023-09-19 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (296, '2023-09-19 19:00:00', '2023-09-19 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (297, '2023-09-19 22:00:00', '2023-09-20 00:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (298, '2023-09-20 01:00:00', '2023-09-20 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (299, '2023-09-20 04:00:00', '2023-09-20 06:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (300, '2023-09-20 10:00:00', '2023-09-20 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (301, '2023-09-20 13:00:00', '2023-09-20 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (302, '2023-09-20 16:00:00', '2023-09-20 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (303, '2023-09-20 19:00:00', '2023-09-20 21:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (304, '2023-09-20 22:00:00', '2023-09-21 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (305, '2023-09-21 01:00:00', '2023-09-21 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (306, '2023-09-21 04:00:00', '2023-09-21 06:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (307, '2023-09-21 10:00:00', '2023-09-21 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (308, '2023-09-21 13:00:00', '2023-09-21 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (309, '2023-09-21 16:00:00', '2023-09-21 18:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (310, '2023-09-21 19:00:00', '2023-09-21 21:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (311, '2023-09-21 22:00:00', '2023-09-22 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (312, '2023-09-22 01:00:00', '2023-09-22 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (313, '2023-09-22 04:00:00', '2023-09-22 06:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (314, '2023-09-22 10:00:00', '2023-09-22 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (315, '2023-09-22 13:00:00', '2023-09-22 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (316, '2023-09-22 16:00:00', '2023-09-22 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (317, '2023-09-22 19:00:00', '2023-09-22 21:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (318, '2023-09-22 22:00:00', '2023-09-23 00:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (319, '2023-09-23 10:00:00', '2023-09-23 12:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (320, '2023-09-23 13:00:00', '2023-09-23 15:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (321, '2023-09-23 16:00:00', '2023-09-23 18:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (322, '2023-09-23 19:00:00', '2023-09-23 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (323, '2023-09-23 22:00:00', '2023-09-24 00:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (324, '2023-09-24 01:00:00', '2023-09-24 03:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (325, '2023-09-24 10:00:00', '2023-09-24 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (326, '2023-09-24 13:00:00', '2023-09-24 15:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (327, '2023-09-24 16:00:00', '2023-09-24 18:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (328, '2023-09-24 19:00:00', '2023-09-24 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (329, '2023-09-24 22:00:00', '2023-09-25 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (330, '2023-09-25 10:00:00', '2023-09-25 12:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (331, '2023-09-25 13:00:00', '2023-09-25 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (332, '2023-09-25 16:00:00', '2023-09-25 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (333, '2023-09-25 19:00:00', '2023-09-25 21:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (334, '2023-09-25 22:00:00', '2023-09-26 00:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (335, '2023-09-26 01:00:00', '2023-09-26 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (336, '2023-09-26 10:00:00', '2023-09-26 12:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (337, '2023-09-26 13:00:00', '2023-09-26 15:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (338, '2023-09-26 16:00:00', '2023-09-26 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (339, '2023-09-26 19:00:00', '2023-09-26 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (340, '2023-09-26 22:00:00', '2023-09-27 00:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (341, '2023-09-27 01:00:00', '2023-09-27 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (342, '2023-09-27 04:00:00', '2023-09-27 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (343, '2023-09-27 10:00:00', '2023-09-27 12:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (344, '2023-09-27 13:00:00', '2023-09-27 15:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (345, '2023-09-27 16:00:00', '2023-09-27 18:00:00', 1, 9, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (346, '2023-09-27 19:00:00', '2023-09-27 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (347, '2023-09-27 22:00:00', '2023-09-28 00:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (348, '2023-09-28 01:00:00', '2023-09-28 03:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (349, '2023-09-28 10:00:00', '2023-09-28 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (350, '2023-09-28 13:00:00', '2023-09-28 15:00:00', 1, 3, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (351, '2023-09-28 16:00:00', '2023-09-28 18:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (352, '2023-09-28 19:00:00', '2023-09-28 21:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (353, '2023-09-28 22:00:00', '2023-09-29 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (354, '2023-09-29 01:00:00', '2023-09-29 03:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (355, '2023-09-29 04:00:00', '2023-09-29 06:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (356, '2023-09-29 10:00:00', '2023-09-29 12:00:00', 1, 6, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (357, '2023-09-29 13:00:00', '2023-09-29 15:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (358, '2023-09-29 16:00:00', '2023-09-29 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (359, '2023-09-29 19:00:00', '2023-09-29 21:00:00', 1, 4, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (360, '2023-09-29 22:00:00', '2023-09-30 00:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (361, '2023-09-30 10:00:00', '2023-09-30 12:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (362, '2023-09-30 13:00:00', '2023-09-30 15:00:00', 1, 10, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (363, '2023-09-30 16:00:00', '2023-09-30 18:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (364, '2023-09-30 19:00:00', '2023-09-30 21:00:00', 1, 8, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (365, '2023-09-30 22:00:00', '2023-10-01 00:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (366, '2023-10-01 01:00:00', '2023-10-01 03:00:00', 1, 5, 1.2); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (367, '2023-10-01 04:00:00', '2023-10-01 06:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (368, '2023-10-01 10:00:00', '2023-10-01 12:00:00', 1, 1, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (369, '2023-10-01 13:00:00', '2023-10-01 15:00:00', 1, 2, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (370, '2023-10-01 16:00:00', '2023-10-01 18:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (371, '2023-10-01 19:00:00', '2023-10-01 21:00:00', 1, 7, 1.0); +INSERT INTO Showtime (showtime_id, start_time, end_time, hall_id, film_id, price_coefficient) VALUES (372, '2023-10-01 22:00:00', '2023-10-02 00:00:00', 1, 2, 1.0);