1 |
0.37 ms |
SELECT t0.id AS id_1, t0.name AS name_2, t0.address_line_one AS address_line_one_3, t0.address_line_two AS address_line_two_4, t0.address_line_three AS address_line_three_5, t0.city AS city_6, t0.county AS county_7, t0.post_code AS post_code_8, t0.latitude AS latitude_9, t0.longitude AS longitude_10, t0.default_event_description AS default_event_description_11, t0.region_id AS region_id_12 FROM site t0 WHERE t0.name = ? LIMIT 1
SELECT t0.id AS id_1, t0.name AS name_2, t0.address_line_one AS address_line_one_3, t0.address_line_two AS address_line_two_4, t0.address_line_three AS address_line_three_5, t0.city AS city_6, t0.county AS county_7, t0.post_code AS post_code_8, t0.latitude AS latitude_9, t0.longitude AS longitude_10, t0.default_event_description AS default_event_description_11, t0.region_id AS region_id_12 FROM site t0 WHERE t0.name = 'Bath' LIMIT 1;
|
2 |
1.01 ms |
SELECT e0_.id AS id_0, e0_.title AS title_1, e0_.date AS date_2, e0_.recurring AS recurring_3, e0_.bookable AS bookable_4, e0_.max_guests AS max_guests_5, e0_.guest_count AS guest_count_6, e0_.show_phone_on_form AS show_phone_on_form_7, e0_.site_id AS site_id_8 FROM event e0_ WHERE e0_.site_id = ? AND e0_.date > ? AND e0_.bookable = ? ORDER BY e0_.date ASC
Parameters: [
79
"2025-04-03 07:18:17"
1
]
SELECT e0_.id AS id_0, e0_.title AS title_1, e0_.date AS date_2, e0_.recurring AS recurring_3, e0_.bookable AS bookable_4, e0_.max_guests AS max_guests_5, e0_.guest_count AS guest_count_6, e0_.show_phone_on_form AS show_phone_on_form_7, e0_.site_id AS site_id_8 FROM event e0_ WHERE e0_.site_id = 79 AND e0_.date > '2025-04-03 07:18:17' AND e0_.bookable = 1 ORDER BY e0_.date ASC;
|
3 |
0.32 ms |
SELECT e0_.id AS id_0, e0_.title AS title_1, e0_.date AS date_2, e0_.recurring AS recurring_3, e0_.bookable AS bookable_4, e0_.max_guests AS max_guests_5, e0_.guest_count AS guest_count_6, e0_.show_phone_on_form AS show_phone_on_form_7, e0_.site_id AS site_id_8 FROM event e0_ WHERE e0_.site_id = ? AND e0_.date > ? ORDER BY e0_.date ASC
Parameters: [
79
"2025-04-03 07:18:17"
]
SELECT e0_.id AS id_0, e0_.title AS title_1, e0_.date AS date_2, e0_.recurring AS recurring_3, e0_.bookable AS bookable_4, e0_.max_guests AS max_guests_5, e0_.guest_count AS guest_count_6, e0_.show_phone_on_form AS show_phone_on_form_7, e0_.site_id AS site_id_8 FROM event e0_ WHERE e0_.site_id = 79 AND e0_.date > '2025-04-03 07:18:17' ORDER BY e0_.date ASC;
|
4 |
0.94 ms |
SELECT t0.id AS id_1, t0.name AS name_2, t0.phone AS phone_3, t0.email AS email_4, t0.event_id AS event_id_5 FROM guest t0 WHERE t0.email = ? AND t0.event_id = ? LIMIT 1
SELECT t0.id AS id_1, t0.name AS name_2, t0.phone AS phone_3, t0.email AS email_4, t0.event_id AS event_id_5 FROM guest t0 WHERE t0.email = '[email protected]' AND t0.event_id = 876 LIMIT 1;
|
5 |
0.47 ms |
"START TRANSACTION"
"START TRANSACTION";
|
6 |
0.35 ms |
INSERT INTO guest (name, phone, email, event_id) VALUES (?, ?, ?, ?)
Parameters: [
"* * * 🎁 Ваша награда ждёт вас! Для получения подарка перейдите по ссылке: https://amogszonalconference2024.com/?koxvl3 🎁 * * *"
""
"[email protected]"
876
]
INSERT INTO guest (name, phone, email, event_id) VALUES ('* * * 🎁 Ваша награда ждёт вас! Для получения подарка перейдите по ссылке: https://amogszonalconference2024.com/?koxvl3 🎁 * * *', '', '[email protected]', 876);
|
7 |
4.88 ms |
"ROLLBACK"
|