1
1.24 ms
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = ? AND t0 . isEditableByUser = ? ORDER BY t0 . tag ASC
Parameters :
[
"event "
1
]
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = 'event' AND t0 . isEditableByUser = 1 ORDER BY t0 . tag ASC ;
Copy
2
1.14 ms
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = ? AND t0 . isUsedInWordPress = ? ORDER BY t0 . tag ASC
Parameters :
[
"event "
1
]
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = 'event' AND t0 . isUsedInWordPress = 1 ORDER BY t0 . tag ASC ;
Copy
3
4.13 ms
(
SELECT
e . * ,
NULL as nextBatchId ,
NULL as nextBatchName ,
e . startDate as nextBatchDate ,
e . endDate as nextBatchEndDate ,
e . priceInEuroCent as displayPrice ,
e . isFreeForKICampus as displayFreeForKiCampus ,
NULL as batchTopic ,
NULL as batchImageLink ,
NULL as batchPartnerDescription
FROM sp_event_events e
WHERE e . status = 'publish' AND e . tags LIKE :queryString
AND e . isMultiBatchEvent = 0
AND e . startDate > = CURDATE ()
)
UNION ALL
(
SELECT
e . * ,
b . id as nextBatchId ,
b . name as nextBatchName ,
COALESCE (b . startDate , b . pitchDate ) as nextBatchDate ,
b . endDate as nextBatchEndDate ,
b . priceInEuroCent as displayPrice ,
b . isFreeForKiCampus as displayFreeForKiCampus ,
b . pitchTopic as batchTopic ,
b . pitchImageLink as batchImageLink ,
b . pitchPartner as batchPartnerDescription
FROM sp_event_events e
INNER JOIN sp_batches b ON e . id = b . eventId
WHERE e . status = 'publish' AND e . tags LIKE :queryString
AND e . isMultiBatchEvent = 1
AND b . status = 'active'
AND COALESCE (b . startDate , b . pitchDate ) > = CURDATE ()
)
ORDER BY nextBatchDate ASC
LIMIT :limit
Parameters :
[
"queryString " => "%#community% "
"limit " => 900
]
(
SELECT
e . * ,
NULL as nextBatchId ,
NULL as nextBatchName ,
e . startDate as nextBatchDate ,
e . endDate as nextBatchEndDate ,
e . priceInEuroCent as displayPrice ,
e . isFreeForKICampus as displayFreeForKiCampus ,
NULL as batchTopic ,
NULL as batchImageLink ,
NULL as batchPartnerDescription
FROM sp_event_events e
WHERE e . status = 'publish' AND e . tags LIKE '%#community%'
AND e . isMultiBatchEvent = 0
AND e . startDate > = CURDATE ()
)
UNION ALL
(
SELECT
e . * ,
b . id as nextBatchId ,
b . name as nextBatchName ,
COALESCE (b . startDate , b . pitchDate ) as nextBatchDate ,
b . endDate as nextBatchEndDate ,
b . priceInEuroCent as displayPrice ,
b . isFreeForKiCampus as displayFreeForKiCampus ,
b . pitchTopic as batchTopic ,
b . pitchImageLink as batchImageLink ,
b . pitchPartner as batchPartnerDescription
FROM sp_event_events e
INNER JOIN sp_batches b ON e . id = b . eventId
WHERE e . status = 'publish' AND e . tags LIKE '%#community%'
AND e . isMultiBatchEvent = 1
AND b . status = 'active'
AND COALESCE (b . startDate , b . pitchDate ) > = CURDATE ()
)
ORDER BY nextBatchDate ASC
LIMIT 900
;
Copy
4
0.37 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6940 ;
Copy
5
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6737 ;
Copy
6
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6913 ;
Copy
7
27.33 ms
(
SELECT
e . * ,
NULL as nextBatchId ,
NULL as nextBatchName ,
e . startDate as nextBatchDate ,
e . endDate as nextBatchEndDate ,
e . priceInEuroCent as displayPrice ,
e . isFreeForKICampus as displayFreeForKiCampus ,
NULL as batchTopic ,
NULL as batchImageLink ,
NULL as batchPartnerDescription
FROM sp_event_events e
WHERE e . status = 'publish' AND e . tags LIKE :queryString
AND e . isMultiBatchEvent = 0
AND e . startDate < CURDATE ()
)
UNION ALL
(
SELECT
e . * ,
b . id as nextBatchId ,
b . name as nextBatchName ,
COALESCE (b . startDate , b . pitchDate ) as nextBatchDate ,
b . endDate as nextBatchEndDate ,
b . priceInEuroCent as displayPrice ,
b . isFreeForKiCampus as displayFreeForKiCampus ,
b . pitchTopic as batchTopic ,
b . pitchImageLink as batchImageLink ,
b . pitchPartner as batchPartnerDescription
FROM sp_event_events e
INNER JOIN sp_batches b ON e . id = b . eventId
WHERE e . status = 'publish' AND e . tags LIKE :queryString
AND e . isMultiBatchEvent = 1
AND b . status = 'active'
AND COALESCE (b . endDate , b . startDate , b . pitchDate ) < CURDATE ()
)
ORDER BY nextBatchDate DESC
LIMIT :limit
Parameters :
[
"queryString " => "%#community% "
"limit " => 900
]
(
SELECT
e . * ,
NULL as nextBatchId ,
NULL as nextBatchName ,
e . startDate as nextBatchDate ,
e . endDate as nextBatchEndDate ,
e . priceInEuroCent as displayPrice ,
e . isFreeForKICampus as displayFreeForKiCampus ,
NULL as batchTopic ,
NULL as batchImageLink ,
NULL as batchPartnerDescription
FROM sp_event_events e
WHERE e . status = 'publish' AND e . tags LIKE '%#community%'
AND e . isMultiBatchEvent = 0
AND e . startDate < CURDATE ()
)
UNION ALL
(
SELECT
e . * ,
b . id as nextBatchId ,
b . name as nextBatchName ,
COALESCE (b . startDate , b . pitchDate ) as nextBatchDate ,
b . endDate as nextBatchEndDate ,
b . priceInEuroCent as displayPrice ,
b . isFreeForKiCampus as displayFreeForKiCampus ,
b . pitchTopic as batchTopic ,
b . pitchImageLink as batchImageLink ,
b . pitchPartner as batchPartnerDescription
FROM sp_event_events e
INNER JOIN sp_batches b ON e . id = b . eventId
WHERE e . status = 'publish' AND e . tags LIKE '%#community%'
AND e . isMultiBatchEvent = 1
AND b . status = 'active'
AND COALESCE (b . endDate , b . startDate , b . pitchDate ) < CURDATE ()
)
ORDER BY nextBatchDate DESC
LIMIT 900
;
Copy
8
0.55 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6873 ;
Copy
9
0.49 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6864 ;
Copy
10
0.42 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6866 ;
Copy
11
0.42 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6872 ;
Copy
12
0.93 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6540 ;
Copy
13
0.66 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6661 ;
Copy
14
0.74 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6551 ;
Copy
15
0.93 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6539 ;
Copy
16
0.78 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6834 ;
Copy
17
0.70 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6660 ;
Copy
18
0.81 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6550 ;
Copy
19
0.82 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6538 ;
Copy
20
0.71 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6659 ;
Copy
21
0.79 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6549 ;
Copy
22
0.72 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6537 ;
Copy
23
0.68 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6658 ;
Copy
24
0.72 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6536 ;
Copy
25
0.70 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6657 ;
Copy
26
0.74 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6547 ;
Copy
27
0.81 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6535 ;
Copy
28
0.68 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6656 ;
Copy
29
0.74 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6534 ;
Copy
30
0.79 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6655 ;
Copy
31
0.84 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6545 ;
Copy
32
0.80 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6531 ;
Copy
33
0.78 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6654 ;
Copy
34
0.77 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6544 ;
Copy
35
0.85 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6530 ;
Copy
36
0.97 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6627 ;
Copy
37
0.86 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6628 ;
Copy
38
0.81 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6541 ;
Copy
39
0.88 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6529 ;
Copy
40
0.75 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6573 ;
Copy
41
0.74 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6518 ;
Copy
42
0.68 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6519 ;
Copy
43
0.68 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6521 ;
Copy
44
0.66 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6502 ;
Copy
45
0.71 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6485 ;
Copy
46
0.65 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6468 ;
Copy
47
0.64 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6426 ;
Copy
48
0.62 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6443 ;
Copy
49
0.70 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6411 ;
Copy
50
0.67 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6398 ;
Copy
51
0.72 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6395 ;
Copy
52
0.65 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6392 ;
Copy
53
0.70 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6264 ;
Copy
54
0.64 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6415 ;
Copy
55
0.64 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6267 ;
Copy
56
0.81 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6263 ;
Copy
57
0.74 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6260 ;
Copy
58
0.67 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6266 ;
Copy
59
0.66 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6262 ;
Copy
60
0.73 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6259 ;
Copy
61
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6265 ;
Copy
62
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6230 ;
Copy
63
0.36 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6231 ;
Copy
64
0.35 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6228 ;
Copy
65
0.41 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6225 ;
Copy
66
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6229 ;
Copy
67
0.38 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6215 ;
Copy
68
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6183 ;
Copy
69
0.35 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6232 ;
Copy
70
0.33 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6175 ;
Copy
71
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6100 ;
Copy
72
0.36 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6064 ;
Copy
73
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6082 ;
Copy
74
0.36 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6081 ;
Copy
75
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6097 ;
Copy
76
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6063 ;
Copy
77
0.37 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5980 ;
Copy
78
0.36 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 6039 ;
Copy
79
0.43 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5954 ;
Copy
80
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5854 ;
Copy
81
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5961 ;
Copy
82
0.38 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5943 ;
Copy
83
0.37 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5918 ;
Copy
84
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5942 ;
Copy
85
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5888 ;
Copy
86
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5887 ;
Copy
87
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5747 ;
Copy
88
0.33 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5864 ;
Copy
89
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5865 ;
Copy
90
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5850 ;
Copy
91
0.35 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5804 ;
Copy
92
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5847 ;
Copy
93
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5819 ;
Copy
94
0.30 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5818 ;
Copy
95
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5792 ;
Copy
96
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5788 ;
Copy
97
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5765 ;
Copy
98
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5766 ;
Copy
99
0.29 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5736 ;
Copy
100
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5717 ;
Copy
101
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5716 ;
Copy
102
0.27 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5712 ;
Copy
103
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5696 ;
Copy
104
0.34 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5680 ;
Copy
105
0.35 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5687 ;
Copy
106
0.28 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5666 ;
Copy
107
0.27 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5656 ;
Copy
108
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5641 ;
Copy
109
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5638 ;
Copy
110
0.25 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5649 ;
Copy
111
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5640 ;
Copy
112
0.25 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5639 ;
Copy
113
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5565 ;
Copy
114
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5114 ;
Copy
115
0.25 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5575 ;
Copy
116
0.25 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5544 ;
Copy
117
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5097 ;
Copy
118
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5137 ;
Copy
119
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5444 ;
Copy
120
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5205 ;
Copy
121
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5067 ;
Copy
122
0.29 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5096 ;
Copy
123
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5095 ;
Copy
124
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5093 ;
Copy
125
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5060 ;
Copy
126
0.25 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5094 ;
Copy
127
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 5090 ;
Copy
128
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4991 ;
Copy
129
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4990 ;
Copy
130
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4962 ;
Copy
131
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4921 ;
Copy
132
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4902 ;
Copy
133
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4863 ;
Copy
134
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4887 ;
Copy
135
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4886 ;
Copy
136
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4862 ;
Copy
137
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4812 ;
Copy
138
0.28 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4792 ;
Copy
139
0.30 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4844 ;
Copy
140
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4811 ;
Copy
141
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4740 ;
Copy
142
0.24 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4431 ;
Copy
143
0.26 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4791 ;
Copy
144
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4606 ;
Copy
145
0.25 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4759 ;
Copy
146
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4605 ;
Copy
147
0.25 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4604 ;
Copy
148
0.23 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4665 ;
Copy
149
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4640 ;
Copy
150
0.30 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4532 ;
Copy
151
0.33 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4496 ;
Copy
152
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4564 ;
Copy
153
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4369 ;
Copy
154
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4444 ;
Copy
155
0.33 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4429 ;
Copy
156
0.30 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4367 ;
Copy
157
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4328 ;
Copy
158
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4418 ;
Copy
159
0.33 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4388 ;
Copy
160
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4365 ;
Copy
161
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4377 ;
Copy
162
0.30 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4366 ;
Copy
163
0.30 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4210 ;
Copy
164
0.29 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4327 ;
Copy
165
0.29 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4207 ;
Copy
166
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4215 ;
Copy
167
0.32 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4296 ;
Copy
168
0.31 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4291 ;
Copy
169
0.29 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4054 ;
Copy
170
0.33 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4251 ;
Copy
171
0.29 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4050 ;
Copy
172
0.30 ms
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = ?
SELECT
t0 . id AS id_1 ,
t0 . eventbriteId AS eventbriteId_2 ,
t0 . wpPostId AS wpPostId_3 ,
t0 . title AS title_4 ,
t0 . slug AS slug_5 ,
t0 . lang AS lang_6 ,
t0 . imagelink AS imagelink_7 ,
t0 . videolink AS videolink_8 ,
t0 . bgImagelink AS bgImagelink_9 ,
t0 . tagline AS tagline_10 ,
t0 . headerTextColor AS headerTextColor_11 ,
t0 . spResponsiblePerson AS spResponsiblePerson_12 ,
t0 . organization AS organization_13 ,
t0 . organizerName AS organizerName_14 ,
t0 . organizerEmail AS organizerEmail_15 ,
t0 . venueName AS venueName_16 ,
t0 . venueAddress AS venueAddress_17 ,
t0 . ticketing AS ticketing_18 ,
t0 . applicationUrl AS applicationUrl_19 ,
t0 . alert AS alert_20 ,
t0 . trainer AS trainer_21 ,
t0 . speakers AS speakers_22 ,
t0 . teaser AS teaser_23 ,
t0 . navbar AS navbar_24 ,
t0 . stripePriceId AS stripePriceId_25 ,
t0 . stripeProductId AS stripeProductId_26 ,
t0 . stripeAccount AS stripeAccount_27 ,
t0 . priceInEuroCent AS priceInEuroCent_28 ,
t0 . isTaxIncluded AS isTaxIncluded_29 ,
t0 . isFreeForKiCampus AS isFreeForKiCampus_30 ,
t0 . isFreeForCommunity AS isFreeForCommunity_31 ,
t0 . isSinglePage AS isSinglePage_32 ,
t0 . isFormalLanguage AS isFormalLanguage_33 ,
t0 . isMultiBatchEvent AS isMultiBatchEvent_34 ,
t0 . twigFile AS twigFile_35 ,
t0 . additionalCss AS additionalCss_36 ,
t0 . content AS content_37 ,
t0 . contentTwig AS contentTwig_38 ,
t0 . ctaContent AS ctaContent_39 ,
t0 . postCtaContent AS postCtaContent_40 ,
t0 . tags AS tags_41 ,
t0 . seriesTag AS seriesTag_42 ,
t0 . type AS type_43 ,
t0 . location AS location_44 ,
t0 . startDate AS startDate_45 ,
t0 . endDate AS endDate_46 ,
t0 . duration AS duration_47 ,
t0 . status AS status_48 ,
t0 . settings AS settings_49 ,
t0 . displayStartDate AS displayStartDate_50 ,
t0 . seoTitle AS seoTitle_51 ,
t0 . seoKeyword AS seoKeyword_52 ,
t0 . seoDescription AS seoDescription_53 ,
t0 . navbar_en AS navbar_en_54 ,
t0 . teaser_en AS teaser_en_55 ,
t0 . content_en AS content_en_56 ,
t0 . content_twig_en AS content_twig_en_57 ,
t0 . post_cta_content_en AS post_cta_content_en_58 ,
t0 . seo_title_en AS seo_title_en_59 ,
t0 . seo_description_en AS seo_description_en_60 ,
t0 . seo_keyword_en AS seo_keyword_en_61 ,
t0 . has_english_version AS has_english_version_62 ,
t0 . additional_js AS additional_js_63 ,
t0 . metaPixelId AS metaPixelId_64 ,
t0 . createDate AS createDate_65 ,
t0 . lastChangeDate AS lastChangeDate_66 ,
t0 . lastChangeUser AS lastChangeUser_67 ,
t0 . publicId AS publicId_68 ,
t0 . isExternalSubmission AS isExternalSubmission_69 ,
t0 . createdBy AS createdBy_70 ,
t0 . lastModified AS lastModified_71 ,
t0 . createdAt AS createdAt_72 ,
t0 . orgaNote AS orgaNote_73 ,
t0 . history AS history_74 ,
t0 . todoHistory AS todoHistory_75
FROM
sp_event_events t0
WHERE
t0 . id = ?
Copy
SELECT t0 . id AS id_1 , t0 . eventbriteId AS eventbriteId_2 , t0 . wpPostId AS wpPostId_3 , t0 . title AS title_4 , t0 . slug AS slug_5 , t0 . lang AS lang_6 , t0 . imagelink AS imagelink_7 , t0 . videolink AS videolink_8 , t0 . bgImagelink AS bgImagelink_9 , t0 . tagline AS tagline_10 , t0 . headerTextColor AS headerTextColor_11 , t0 . spResponsiblePerson AS spResponsiblePerson_12 , t0 . organization AS organization_13 , t0 . organizerName AS organizerName_14 , t0 . organizerEmail AS organizerEmail_15 , t0 . venueName AS venueName_16 , t0 . venueAddress AS venueAddress_17 , t0 . ticketing AS ticketing_18 , t0 . applicationUrl AS applicationUrl_19 , t0 . alert AS alert_20 , t0 . trainer AS trainer_21 , t0 . speakers AS speakers_22 , t0 . teaser AS teaser_23 , t0 . navbar AS navbar_24 , t0 . stripePriceId AS stripePriceId_25 , t0 . stripeProductId AS stripeProductId_26 , t0 . stripeAccount AS stripeAccount_27 , t0 . priceInEuroCent AS priceInEuroCent_28 , t0 . isTaxIncluded AS isTaxIncluded_29 , t0 . isFreeForKiCampus AS isFreeForKiCampus_30 , t0 . isFreeForCommunity AS isFreeForCommunity_31 , t0 . isSinglePage AS isSinglePage_32 , t0 . isFormalLanguage AS isFormalLanguage_33 , t0 . isMultiBatchEvent AS isMultiBatchEvent_34 , t0 . twigFile AS twigFile_35 , t0 . additionalCss AS additionalCss_36 , t0 . content AS content_37 , t0 . contentTwig AS contentTwig_38 , t0 . ctaContent AS ctaContent_39 , t0 . postCtaContent AS postCtaContent_40 , t0 . tags AS tags_41 , t0 . seriesTag AS seriesTag_42 , t0 . type AS type_43 , t0 . location AS location_44 , t0 . startDate AS startDate_45 , t0 . endDate AS endDate_46 , t0 . duration AS duration_47 , t0 . status AS status_48 , t0 . settings AS settings_49 , t0 . displayStartDate AS displayStartDate_50 , t0 . seoTitle AS seoTitle_51 , t0 . seoKeyword AS seoKeyword_52 , t0 . seoDescription AS seoDescription_53 , t0 . navbar_en AS navbar_en_54 , t0 . teaser_en AS teaser_en_55 , t0 . content_en AS content_en_56 , t0 . content_twig_en AS content_twig_en_57 , t0 . post_cta_content_en AS post_cta_content_en_58 , t0 . seo_title_en AS seo_title_en_59 , t0 . seo_description_en AS seo_description_en_60 , t0 . seo_keyword_en AS seo_keyword_en_61 , t0 . has_english_version AS has_english_version_62 , t0 . additional_js AS additional_js_63 , t0 . metaPixelId AS metaPixelId_64 , t0 . createDate AS createDate_65 , t0 . lastChangeDate AS lastChangeDate_66 , t0 . lastChangeUser AS lastChangeUser_67 , t0 . publicId AS publicId_68 , t0 . isExternalSubmission AS isExternalSubmission_69 , t0 . createdBy AS createdBy_70 , t0 . lastModified AS lastModified_71 , t0 . createdAt AS createdAt_72 , t0 . orgaNote AS orgaNote_73 , t0 . history AS history_74 , t0 . todoHistory AS todoHistory_75 FROM sp_event_events t0 WHERE t0 . id = 4179 ;
Copy
173
0.30 ms
SELECT MONTH (e . startDate ) as month , YEAR (e . startDate ) as year , COUNT (MONTH (e . startDate )) as total
FROM sp_event_events e
WHERE e . startDate > :lastDayOfNextMonth AND e . status = 'publish' GROUP BY MONTH (e . startDate )
Parameters :
[
":lastDayOfNextMonth " => "2026-03-31 "
]
SELECT MONTH (e . startDate ) as month , YEAR (e . startDate ) as year , COUNT (MONTH (e . startDate )) as total
FROM sp_event_events e
WHERE e . startDate > :lastDayOfNextMonth AND e . status = 'publish' GROUP BY MONTH (e . startDate );
Copy
174
0.58 ms
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = ? AND t0 . isThema = ? ORDER BY t0 . tag ASC
Parameters :
[
"event "
1
]
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = 'event' AND t0 . isThema = 1 ORDER BY t0 . tag ASC ;
Copy
175
0.43 ms
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = ? AND t0 . isModul = ? ORDER BY t0 . tag ASC
Parameters :
[
"event "
1
]
SELECT t0 . id AS id_1 , t0 . tag AS tag_2 , t0 . label AS label_3 , t0 . domain AS domain_4 , t0 . description AS description_5 , t0 . sqlSelect AS sqlSelect_6 , t0 . zapierWebhook AS zapierWebhook_7 , t0 . isFavorite AS isFavorite_8 , t0 . isModul AS isModul_9 , t0 . isThema AS isThema_10 , t0 . isEditableByUser AS isEditableByUser_11 , t0 . isUsedInWordPress AS isUsedInWordPress_12 , t0 . wpEntitiesCount AS wpEntitiesCount_13 , t0 . entitiesCount AS entitiesCount_14 , t0 . history AS history_15 , t0 . createdAt AS createdAt_16 , t0 . lastModified AS lastModified_17 FROM sp_tags t0 WHERE t0 . domain = 'event' AND t0 . isModul = 1 ORDER BY t0 . tag ASC ;
Copy
176
0.65 ms
SELECT s0_ . id AS id_0 , s0_ . eventbriteId AS eventbriteId_1 , s0_ . wpPostId AS wpPostId_2 , s0_ . title AS title_3 , s0_ . slug AS slug_4 , s0_ . lang AS lang_5 , s0_ . imagelink AS imagelink_6 , s0_ . videolink AS videolink_7 , s0_ . bgImagelink AS bgImagelink_8 , s0_ . tagline AS tagline_9 , s0_ . headerTextColor AS headerTextColor_10 , s0_ . spResponsiblePerson AS spResponsiblePerson_11 , s0_ . organization AS organization_12 , s0_ . organizerName AS organizerName_13 , s0_ . organizerEmail AS organizerEmail_14 , s0_ . venueName AS venueName_15 , s0_ . venueAddress AS venueAddress_16 , s0_ . ticketing AS ticketing_17 , s0_ . applicationUrl AS applicationUrl_18 , s0_ . alert AS alert_19 , s0_ . trainer AS trainer_20 , s0_ . speakers AS speakers_21 , s0_ . teaser AS teaser_22 , s0_ . navbar AS navbar_23 , s0_ . stripePriceId AS stripePriceId_24 , s0_ . stripeProductId AS stripeProductId_25 , s0_ . stripeAccount AS stripeAccount_26 , s0_ . priceInEuroCent AS priceInEuroCent_27 , s0_ . isTaxIncluded AS isTaxIncluded_28 , s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 , s0_ . isFreeForCommunity AS isFreeForCommunity_30 , s0_ . isSinglePage AS isSinglePage_31 , s0_ . isFormalLanguage AS isFormalLanguage_32 , s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 , s0_ . twigFile AS twigFile_34 , s0_ . additionalCss AS additionalCss_35 , s0_ . content AS content_36 , s0_ . contentTwig AS contentTwig_37 , s0_ . ctaContent AS ctaContent_38 , s0_ . postCtaContent AS postCtaContent_39 , s0_ . tags AS tags_40 , s0_ . seriesTag AS seriesTag_41 , s0_ . type AS type_42 , s0_ . location AS location_43 , s0_ . startDate AS startDate_44 , s0_ . endDate AS endDate_45 , s0_ . duration AS duration_46 , s0_ . status AS status_47 , s0_ . settings AS settings_48 , s0_ . displayStartDate AS displayStartDate_49 , s0_ . seoTitle AS seoTitle_50 , s0_ . seoKeyword AS seoKeyword_51 , s0_ . seoDescription AS seoDescription_52 , s0_ . navbar_en AS navbar_en_53 , s0_ . teaser_en AS teaser_en_54 , s0_ . content_en AS content_en_55 , s0_ . content_twig_en AS content_twig_en_56 , s0_ . post_cta_content_en AS post_cta_content_en_57 , s0_ . seo_title_en AS seo_title_en_58 , s0_ . seo_description_en AS seo_description_en_59 , s0_ . seo_keyword_en AS seo_keyword_en_60 , s0_ . has_english_version AS has_english_version_61 , s0_ . additional_js AS additional_js_62 , s0_ . metaPixelId AS metaPixelId_63 , s0_ . createDate AS createDate_64 , s0_ . lastChangeDate AS lastChangeDate_65 , s0_ . lastChangeUser AS lastChangeUser_66 , s0_ . publicId AS publicId_67 , s0_ . isExternalSubmission AS isExternalSubmission_68 , s0_ . createdBy AS createdBy_69 , s0_ . lastModified AS lastModified_70 , s0_ . createdAt AS createdAt_71 , s0_ . orgaNote AS orgaNote_72 , s0_ . history AS history_73 , s0_ . todoHistory AS todoHistory_74 FROM sp_event_events s0_ WHERE s0_ . status = 'publish' AND s0_ . startDate > = ? AND s0_ . type = ? ORDER BY s0_ . startDate ASC LIMIT 1
Parameters :
[
"2026-02-27 "
"Konferenz "
]
SELECT
s0_ . id AS id_0 ,
s0_ . eventbriteId AS eventbriteId_1 ,
s0_ . wpPostId AS wpPostId_2 ,
s0_ . title AS title_3 ,
s0_ . slug AS slug_4 ,
s0_ . lang AS lang_5 ,
s0_ . imagelink AS imagelink_6 ,
s0_ . videolink AS videolink_7 ,
s0_ . bgImagelink AS bgImagelink_8 ,
s0_ . tagline AS tagline_9 ,
s0_ . headerTextColor AS headerTextColor_10 ,
s0_ . spResponsiblePerson AS spResponsiblePerson_11 ,
s0_ . organization AS organization_12 ,
s0_ . organizerName AS organizerName_13 ,
s0_ . organizerEmail AS organizerEmail_14 ,
s0_ . venueName AS venueName_15 ,
s0_ . venueAddress AS venueAddress_16 ,
s0_ . ticketing AS ticketing_17 ,
s0_ . applicationUrl AS applicationUrl_18 ,
s0_ . alert AS alert_19 ,
s0_ . trainer AS trainer_20 ,
s0_ . speakers AS speakers_21 ,
s0_ . teaser AS teaser_22 ,
s0_ . navbar AS navbar_23 ,
s0_ . stripePriceId AS stripePriceId_24 ,
s0_ . stripeProductId AS stripeProductId_25 ,
s0_ . stripeAccount AS stripeAccount_26 ,
s0_ . priceInEuroCent AS priceInEuroCent_27 ,
s0_ . isTaxIncluded AS isTaxIncluded_28 ,
s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 ,
s0_ . isFreeForCommunity AS isFreeForCommunity_30 ,
s0_ . isSinglePage AS isSinglePage_31 ,
s0_ . isFormalLanguage AS isFormalLanguage_32 ,
s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 ,
s0_ . twigFile AS twigFile_34 ,
s0_ . additionalCss AS additionalCss_35 ,
s0_ . content AS content_36 ,
s0_ . contentTwig AS contentTwig_37 ,
s0_ . ctaContent AS ctaContent_38 ,
s0_ . postCtaContent AS postCtaContent_39 ,
s0_ . tags AS tags_40 ,
s0_ . seriesTag AS seriesTag_41 ,
s0_ . type AS type_42 ,
s0_ . location AS location_43 ,
s0_ . startDate AS startDate_44 ,
s0_ . endDate AS endDate_45 ,
s0_ . duration AS duration_46 ,
s0_ . status AS status_47 ,
s0_ . settings AS settings_48 ,
s0_ . displayStartDate AS displayStartDate_49 ,
s0_ . seoTitle AS seoTitle_50 ,
s0_ . seoKeyword AS seoKeyword_51 ,
s0_ . seoDescription AS seoDescription_52 ,
s0_ . navbar_en AS navbar_en_53 ,
s0_ . teaser_en AS teaser_en_54 ,
s0_ . content_en AS content_en_55 ,
s0_ . content_twig_en AS content_twig_en_56 ,
s0_ . post_cta_content_en AS post_cta_content_en_57 ,
s0_ . seo_title_en AS seo_title_en_58 ,
s0_ . seo_description_en AS seo_description_en_59 ,
s0_ . seo_keyword_en AS seo_keyword_en_60 ,
s0_ . has_english_version AS has_english_version_61 ,
s0_ . additional_js AS additional_js_62 ,
s0_ . metaPixelId AS metaPixelId_63 ,
s0_ . createDate AS createDate_64 ,
s0_ . lastChangeDate AS lastChangeDate_65 ,
s0_ . lastChangeUser AS lastChangeUser_66 ,
s0_ . publicId AS publicId_67 ,
s0_ . isExternalSubmission AS isExternalSubmission_68 ,
s0_ . createdBy AS createdBy_69 ,
s0_ . lastModified AS lastModified_70 ,
s0_ . createdAt AS createdAt_71 ,
s0_ . orgaNote AS orgaNote_72 ,
s0_ . history AS history_73 ,
s0_ . todoHistory AS todoHistory_74
FROM
sp_event_events s0_
WHERE
s0_ . status = 'publish'
AND s0_ . startDate > = ?
AND s0_ . type = ?
ORDER BY
s0_ . startDate ASC
LIMIT
1
Copy
SELECT s0_ . id AS id_0 , s0_ . eventbriteId AS eventbriteId_1 , s0_ . wpPostId AS wpPostId_2 , s0_ . title AS title_3 , s0_ . slug AS slug_4 , s0_ . lang AS lang_5 , s0_ . imagelink AS imagelink_6 , s0_ . videolink AS videolink_7 , s0_ . bgImagelink AS bgImagelink_8 , s0_ . tagline AS tagline_9 , s0_ . headerTextColor AS headerTextColor_10 , s0_ . spResponsiblePerson AS spResponsiblePerson_11 , s0_ . organization AS organization_12 , s0_ . organizerName AS organizerName_13 , s0_ . organizerEmail AS organizerEmail_14 , s0_ . venueName AS venueName_15 , s0_ . venueAddress AS venueAddress_16 , s0_ . ticketing AS ticketing_17 , s0_ . applicationUrl AS applicationUrl_18 , s0_ . alert AS alert_19 , s0_ . trainer AS trainer_20 , s0_ . speakers AS speakers_21 , s0_ . teaser AS teaser_22 , s0_ . navbar AS navbar_23 , s0_ . stripePriceId AS stripePriceId_24 , s0_ . stripeProductId AS stripeProductId_25 , s0_ . stripeAccount AS stripeAccount_26 , s0_ . priceInEuroCent AS priceInEuroCent_27 , s0_ . isTaxIncluded AS isTaxIncluded_28 , s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 , s0_ . isFreeForCommunity AS isFreeForCommunity_30 , s0_ . isSinglePage AS isSinglePage_31 , s0_ . isFormalLanguage AS isFormalLanguage_32 , s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 , s0_ . twigFile AS twigFile_34 , s0_ . additionalCss AS additionalCss_35 , s0_ . content AS content_36 , s0_ . contentTwig AS contentTwig_37 , s0_ . ctaContent AS ctaContent_38 , s0_ . postCtaContent AS postCtaContent_39 , s0_ . tags AS tags_40 , s0_ . seriesTag AS seriesTag_41 , s0_ . type AS type_42 , s0_ . location AS location_43 , s0_ . startDate AS startDate_44 , s0_ . endDate AS endDate_45 , s0_ . duration AS duration_46 , s0_ . status AS status_47 , s0_ . settings AS settings_48 , s0_ . displayStartDate AS displayStartDate_49 , s0_ . seoTitle AS seoTitle_50 , s0_ . seoKeyword AS seoKeyword_51 , s0_ . seoDescription AS seoDescription_52 , s0_ . navbar_en AS navbar_en_53 , s0_ . teaser_en AS teaser_en_54 , s0_ . content_en AS content_en_55 , s0_ . content_twig_en AS content_twig_en_56 , s0_ . post_cta_content_en AS post_cta_content_en_57 , s0_ . seo_title_en AS seo_title_en_58 , s0_ . seo_description_en AS seo_description_en_59 , s0_ . seo_keyword_en AS seo_keyword_en_60 , s0_ . has_english_version AS has_english_version_61 , s0_ . additional_js AS additional_js_62 , s0_ . metaPixelId AS metaPixelId_63 , s0_ . createDate AS createDate_64 , s0_ . lastChangeDate AS lastChangeDate_65 , s0_ . lastChangeUser AS lastChangeUser_66 , s0_ . publicId AS publicId_67 , s0_ . isExternalSubmission AS isExternalSubmission_68 , s0_ . createdBy AS createdBy_69 , s0_ . lastModified AS lastModified_70 , s0_ . createdAt AS createdAt_71 , s0_ . orgaNote AS orgaNote_72 , s0_ . history AS history_73 , s0_ . todoHistory AS todoHistory_74 FROM sp_event_events s0_ WHERE s0_ . status = 'publish' AND s0_ . startDate > = '2026-02-27' AND s0_ . type = 'Konferenz' ORDER BY s0_ . startDate ASC LIMIT 1 ;
Copy
177
0.52 ms
SELECT s0_ . id AS id_0 , s0_ . eventbriteId AS eventbriteId_1 , s0_ . wpPostId AS wpPostId_2 , s0_ . title AS title_3 , s0_ . slug AS slug_4 , s0_ . lang AS lang_5 , s0_ . imagelink AS imagelink_6 , s0_ . videolink AS videolink_7 , s0_ . bgImagelink AS bgImagelink_8 , s0_ . tagline AS tagline_9 , s0_ . headerTextColor AS headerTextColor_10 , s0_ . spResponsiblePerson AS spResponsiblePerson_11 , s0_ . organization AS organization_12 , s0_ . organizerName AS organizerName_13 , s0_ . organizerEmail AS organizerEmail_14 , s0_ . venueName AS venueName_15 , s0_ . venueAddress AS venueAddress_16 , s0_ . ticketing AS ticketing_17 , s0_ . applicationUrl AS applicationUrl_18 , s0_ . alert AS alert_19 , s0_ . trainer AS trainer_20 , s0_ . speakers AS speakers_21 , s0_ . teaser AS teaser_22 , s0_ . navbar AS navbar_23 , s0_ . stripePriceId AS stripePriceId_24 , s0_ . stripeProductId AS stripeProductId_25 , s0_ . stripeAccount AS stripeAccount_26 , s0_ . priceInEuroCent AS priceInEuroCent_27 , s0_ . isTaxIncluded AS isTaxIncluded_28 , s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 , s0_ . isFreeForCommunity AS isFreeForCommunity_30 , s0_ . isSinglePage AS isSinglePage_31 , s0_ . isFormalLanguage AS isFormalLanguage_32 , s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 , s0_ . twigFile AS twigFile_34 , s0_ . additionalCss AS additionalCss_35 , s0_ . content AS content_36 , s0_ . contentTwig AS contentTwig_37 , s0_ . ctaContent AS ctaContent_38 , s0_ . postCtaContent AS postCtaContent_39 , s0_ . tags AS tags_40 , s0_ . seriesTag AS seriesTag_41 , s0_ . type AS type_42 , s0_ . location AS location_43 , s0_ . startDate AS startDate_44 , s0_ . endDate AS endDate_45 , s0_ . duration AS duration_46 , s0_ . status AS status_47 , s0_ . settings AS settings_48 , s0_ . displayStartDate AS displayStartDate_49 , s0_ . seoTitle AS seoTitle_50 , s0_ . seoKeyword AS seoKeyword_51 , s0_ . seoDescription AS seoDescription_52 , s0_ . navbar_en AS navbar_en_53 , s0_ . teaser_en AS teaser_en_54 , s0_ . content_en AS content_en_55 , s0_ . content_twig_en AS content_twig_en_56 , s0_ . post_cta_content_en AS post_cta_content_en_57 , s0_ . seo_title_en AS seo_title_en_58 , s0_ . seo_description_en AS seo_description_en_59 , s0_ . seo_keyword_en AS seo_keyword_en_60 , s0_ . has_english_version AS has_english_version_61 , s0_ . additional_js AS additional_js_62 , s0_ . metaPixelId AS metaPixelId_63 , s0_ . createDate AS createDate_64 , s0_ . lastChangeDate AS lastChangeDate_65 , s0_ . lastChangeUser AS lastChangeUser_66 , s0_ . publicId AS publicId_67 , s0_ . isExternalSubmission AS isExternalSubmission_68 , s0_ . createdBy AS createdBy_69 , s0_ . lastModified AS lastModified_70 , s0_ . createdAt AS createdAt_71 , s0_ . orgaNote AS orgaNote_72 , s0_ . history AS history_73 , s0_ . todoHistory AS todoHistory_74 FROM sp_event_events s0_ WHERE s0_ . status = 'publish' AND s0_ . startDate > = ? AND s0_ . type = ? ORDER BY s0_ . startDate ASC LIMIT 1
Parameters :
[
"2026-02-27 "
"Workshop "
]
SELECT
s0_ . id AS id_0 ,
s0_ . eventbriteId AS eventbriteId_1 ,
s0_ . wpPostId AS wpPostId_2 ,
s0_ . title AS title_3 ,
s0_ . slug AS slug_4 ,
s0_ . lang AS lang_5 ,
s0_ . imagelink AS imagelink_6 ,
s0_ . videolink AS videolink_7 ,
s0_ . bgImagelink AS bgImagelink_8 ,
s0_ . tagline AS tagline_9 ,
s0_ . headerTextColor AS headerTextColor_10 ,
s0_ . spResponsiblePerson AS spResponsiblePerson_11 ,
s0_ . organization AS organization_12 ,
s0_ . organizerName AS organizerName_13 ,
s0_ . organizerEmail AS organizerEmail_14 ,
s0_ . venueName AS venueName_15 ,
s0_ . venueAddress AS venueAddress_16 ,
s0_ . ticketing AS ticketing_17 ,
s0_ . applicationUrl AS applicationUrl_18 ,
s0_ . alert AS alert_19 ,
s0_ . trainer AS trainer_20 ,
s0_ . speakers AS speakers_21 ,
s0_ . teaser AS teaser_22 ,
s0_ . navbar AS navbar_23 ,
s0_ . stripePriceId AS stripePriceId_24 ,
s0_ . stripeProductId AS stripeProductId_25 ,
s0_ . stripeAccount AS stripeAccount_26 ,
s0_ . priceInEuroCent AS priceInEuroCent_27 ,
s0_ . isTaxIncluded AS isTaxIncluded_28 ,
s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 ,
s0_ . isFreeForCommunity AS isFreeForCommunity_30 ,
s0_ . isSinglePage AS isSinglePage_31 ,
s0_ . isFormalLanguage AS isFormalLanguage_32 ,
s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 ,
s0_ . twigFile AS twigFile_34 ,
s0_ . additionalCss AS additionalCss_35 ,
s0_ . content AS content_36 ,
s0_ . contentTwig AS contentTwig_37 ,
s0_ . ctaContent AS ctaContent_38 ,
s0_ . postCtaContent AS postCtaContent_39 ,
s0_ . tags AS tags_40 ,
s0_ . seriesTag AS seriesTag_41 ,
s0_ . type AS type_42 ,
s0_ . location AS location_43 ,
s0_ . startDate AS startDate_44 ,
s0_ . endDate AS endDate_45 ,
s0_ . duration AS duration_46 ,
s0_ . status AS status_47 ,
s0_ . settings AS settings_48 ,
s0_ . displayStartDate AS displayStartDate_49 ,
s0_ . seoTitle AS seoTitle_50 ,
s0_ . seoKeyword AS seoKeyword_51 ,
s0_ . seoDescription AS seoDescription_52 ,
s0_ . navbar_en AS navbar_en_53 ,
s0_ . teaser_en AS teaser_en_54 ,
s0_ . content_en AS content_en_55 ,
s0_ . content_twig_en AS content_twig_en_56 ,
s0_ . post_cta_content_en AS post_cta_content_en_57 ,
s0_ . seo_title_en AS seo_title_en_58 ,
s0_ . seo_description_en AS seo_description_en_59 ,
s0_ . seo_keyword_en AS seo_keyword_en_60 ,
s0_ . has_english_version AS has_english_version_61 ,
s0_ . additional_js AS additional_js_62 ,
s0_ . metaPixelId AS metaPixelId_63 ,
s0_ . createDate AS createDate_64 ,
s0_ . lastChangeDate AS lastChangeDate_65 ,
s0_ . lastChangeUser AS lastChangeUser_66 ,
s0_ . publicId AS publicId_67 ,
s0_ . isExternalSubmission AS isExternalSubmission_68 ,
s0_ . createdBy AS createdBy_69 ,
s0_ . lastModified AS lastModified_70 ,
s0_ . createdAt AS createdAt_71 ,
s0_ . orgaNote AS orgaNote_72 ,
s0_ . history AS history_73 ,
s0_ . todoHistory AS todoHistory_74
FROM
sp_event_events s0_
WHERE
s0_ . status = 'publish'
AND s0_ . startDate > = ?
AND s0_ . type = ?
ORDER BY
s0_ . startDate ASC
LIMIT
1
Copy
SELECT s0_ . id AS id_0 , s0_ . eventbriteId AS eventbriteId_1 , s0_ . wpPostId AS wpPostId_2 , s0_ . title AS title_3 , s0_ . slug AS slug_4 , s0_ . lang AS lang_5 , s0_ . imagelink AS imagelink_6 , s0_ . videolink AS videolink_7 , s0_ . bgImagelink AS bgImagelink_8 , s0_ . tagline AS tagline_9 , s0_ . headerTextColor AS headerTextColor_10 , s0_ . spResponsiblePerson AS spResponsiblePerson_11 , s0_ . organization AS organization_12 , s0_ . organizerName AS organizerName_13 , s0_ . organizerEmail AS organizerEmail_14 , s0_ . venueName AS venueName_15 , s0_ . venueAddress AS venueAddress_16 , s0_ . ticketing AS ticketing_17 , s0_ . applicationUrl AS applicationUrl_18 , s0_ . alert AS alert_19 , s0_ . trainer AS trainer_20 , s0_ . speakers AS speakers_21 , s0_ . teaser AS teaser_22 , s0_ . navbar AS navbar_23 , s0_ . stripePriceId AS stripePriceId_24 , s0_ . stripeProductId AS stripeProductId_25 , s0_ . stripeAccount AS stripeAccount_26 , s0_ . priceInEuroCent AS priceInEuroCent_27 , s0_ . isTaxIncluded AS isTaxIncluded_28 , s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 , s0_ . isFreeForCommunity AS isFreeForCommunity_30 , s0_ . isSinglePage AS isSinglePage_31 , s0_ . isFormalLanguage AS isFormalLanguage_32 , s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 , s0_ . twigFile AS twigFile_34 , s0_ . additionalCss AS additionalCss_35 , s0_ . content AS content_36 , s0_ . contentTwig AS contentTwig_37 , s0_ . ctaContent AS ctaContent_38 , s0_ . postCtaContent AS postCtaContent_39 , s0_ . tags AS tags_40 , s0_ . seriesTag AS seriesTag_41 , s0_ . type AS type_42 , s0_ . location AS location_43 , s0_ . startDate AS startDate_44 , s0_ . endDate AS endDate_45 , s0_ . duration AS duration_46 , s0_ . status AS status_47 , s0_ . settings AS settings_48 , s0_ . displayStartDate AS displayStartDate_49 , s0_ . seoTitle AS seoTitle_50 , s0_ . seoKeyword AS seoKeyword_51 , s0_ . seoDescription AS seoDescription_52 , s0_ . navbar_en AS navbar_en_53 , s0_ . teaser_en AS teaser_en_54 , s0_ . content_en AS content_en_55 , s0_ . content_twig_en AS content_twig_en_56 , s0_ . post_cta_content_en AS post_cta_content_en_57 , s0_ . seo_title_en AS seo_title_en_58 , s0_ . seo_description_en AS seo_description_en_59 , s0_ . seo_keyword_en AS seo_keyword_en_60 , s0_ . has_english_version AS has_english_version_61 , s0_ . additional_js AS additional_js_62 , s0_ . metaPixelId AS metaPixelId_63 , s0_ . createDate AS createDate_64 , s0_ . lastChangeDate AS lastChangeDate_65 , s0_ . lastChangeUser AS lastChangeUser_66 , s0_ . publicId AS publicId_67 , s0_ . isExternalSubmission AS isExternalSubmission_68 , s0_ . createdBy AS createdBy_69 , s0_ . lastModified AS lastModified_70 , s0_ . createdAt AS createdAt_71 , s0_ . orgaNote AS orgaNote_72 , s0_ . history AS history_73 , s0_ . todoHistory AS todoHistory_74 FROM sp_event_events s0_ WHERE s0_ . status = 'publish' AND s0_ . startDate > = '2026-02-27' AND s0_ . type = 'Workshop' ORDER BY s0_ . startDate ASC LIMIT 1 ;
Copy
178
1.11 ms
SELECT s0_ . id AS id_0 , s0_ . eventbriteId AS eventbriteId_1 , s0_ . wpPostId AS wpPostId_2 , s0_ . title AS title_3 , s0_ . slug AS slug_4 , s0_ . lang AS lang_5 , s0_ . imagelink AS imagelink_6 , s0_ . videolink AS videolink_7 , s0_ . bgImagelink AS bgImagelink_8 , s0_ . tagline AS tagline_9 , s0_ . headerTextColor AS headerTextColor_10 , s0_ . spResponsiblePerson AS spResponsiblePerson_11 , s0_ . organization AS organization_12 , s0_ . organizerName AS organizerName_13 , s0_ . organizerEmail AS organizerEmail_14 , s0_ . venueName AS venueName_15 , s0_ . venueAddress AS venueAddress_16 , s0_ . ticketing AS ticketing_17 , s0_ . applicationUrl AS applicationUrl_18 , s0_ . alert AS alert_19 , s0_ . trainer AS trainer_20 , s0_ . speakers AS speakers_21 , s0_ . teaser AS teaser_22 , s0_ . navbar AS navbar_23 , s0_ . stripePriceId AS stripePriceId_24 , s0_ . stripeProductId AS stripeProductId_25 , s0_ . stripeAccount AS stripeAccount_26 , s0_ . priceInEuroCent AS priceInEuroCent_27 , s0_ . isTaxIncluded AS isTaxIncluded_28 , s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 , s0_ . isFreeForCommunity AS isFreeForCommunity_30 , s0_ . isSinglePage AS isSinglePage_31 , s0_ . isFormalLanguage AS isFormalLanguage_32 , s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 , s0_ . twigFile AS twigFile_34 , s0_ . additionalCss AS additionalCss_35 , s0_ . content AS content_36 , s0_ . contentTwig AS contentTwig_37 , s0_ . ctaContent AS ctaContent_38 , s0_ . postCtaContent AS postCtaContent_39 , s0_ . tags AS tags_40 , s0_ . seriesTag AS seriesTag_41 , s0_ . type AS type_42 , s0_ . location AS location_43 , s0_ . startDate AS startDate_44 , s0_ . endDate AS endDate_45 , s0_ . duration AS duration_46 , s0_ . status AS status_47 , s0_ . settings AS settings_48 , s0_ . displayStartDate AS displayStartDate_49 , s0_ . seoTitle AS seoTitle_50 , s0_ . seoKeyword AS seoKeyword_51 , s0_ . seoDescription AS seoDescription_52 , s0_ . navbar_en AS navbar_en_53 , s0_ . teaser_en AS teaser_en_54 , s0_ . content_en AS content_en_55 , s0_ . content_twig_en AS content_twig_en_56 , s0_ . post_cta_content_en AS post_cta_content_en_57 , s0_ . seo_title_en AS seo_title_en_58 , s0_ . seo_description_en AS seo_description_en_59 , s0_ . seo_keyword_en AS seo_keyword_en_60 , s0_ . has_english_version AS has_english_version_61 , s0_ . additional_js AS additional_js_62 , s0_ . metaPixelId AS metaPixelId_63 , s0_ . createDate AS createDate_64 , s0_ . lastChangeDate AS lastChangeDate_65 , s0_ . lastChangeUser AS lastChangeUser_66 , s0_ . publicId AS publicId_67 , s0_ . isExternalSubmission AS isExternalSubmission_68 , s0_ . createdBy AS createdBy_69 , s0_ . lastModified AS lastModified_70 , s0_ . createdAt AS createdAt_71 , s0_ . orgaNote AS orgaNote_72 , s0_ . history AS history_73 , s0_ . todoHistory AS todoHistory_74 FROM sp_event_events s0_ WHERE s0_ . startDate > = ? AND s0_ . status = 'publish' AND s0_ . status = 'publish' ORDER BY s0_ . startDate ASC LIMIT 100
Parameters :
[
"2026-02-27 "
]
SELECT
s0_ . id AS id_0 ,
s0_ . eventbriteId AS eventbriteId_1 ,
s0_ . wpPostId AS wpPostId_2 ,
s0_ . title AS title_3 ,
s0_ . slug AS slug_4 ,
s0_ . lang AS lang_5 ,
s0_ . imagelink AS imagelink_6 ,
s0_ . videolink AS videolink_7 ,
s0_ . bgImagelink AS bgImagelink_8 ,
s0_ . tagline AS tagline_9 ,
s0_ . headerTextColor AS headerTextColor_10 ,
s0_ . spResponsiblePerson AS spResponsiblePerson_11 ,
s0_ . organization AS organization_12 ,
s0_ . organizerName AS organizerName_13 ,
s0_ . organizerEmail AS organizerEmail_14 ,
s0_ . venueName AS venueName_15 ,
s0_ . venueAddress AS venueAddress_16 ,
s0_ . ticketing AS ticketing_17 ,
s0_ . applicationUrl AS applicationUrl_18 ,
s0_ . alert AS alert_19 ,
s0_ . trainer AS trainer_20 ,
s0_ . speakers AS speakers_21 ,
s0_ . teaser AS teaser_22 ,
s0_ . navbar AS navbar_23 ,
s0_ . stripePriceId AS stripePriceId_24 ,
s0_ . stripeProductId AS stripeProductId_25 ,
s0_ . stripeAccount AS stripeAccount_26 ,
s0_ . priceInEuroCent AS priceInEuroCent_27 ,
s0_ . isTaxIncluded AS isTaxIncluded_28 ,
s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 ,
s0_ . isFreeForCommunity AS isFreeForCommunity_30 ,
s0_ . isSinglePage AS isSinglePage_31 ,
s0_ . isFormalLanguage AS isFormalLanguage_32 ,
s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 ,
s0_ . twigFile AS twigFile_34 ,
s0_ . additionalCss AS additionalCss_35 ,
s0_ . content AS content_36 ,
s0_ . contentTwig AS contentTwig_37 ,
s0_ . ctaContent AS ctaContent_38 ,
s0_ . postCtaContent AS postCtaContent_39 ,
s0_ . tags AS tags_40 ,
s0_ . seriesTag AS seriesTag_41 ,
s0_ . type AS type_42 ,
s0_ . location AS location_43 ,
s0_ . startDate AS startDate_44 ,
s0_ . endDate AS endDate_45 ,
s0_ . duration AS duration_46 ,
s0_ . status AS status_47 ,
s0_ . settings AS settings_48 ,
s0_ . displayStartDate AS displayStartDate_49 ,
s0_ . seoTitle AS seoTitle_50 ,
s0_ . seoKeyword AS seoKeyword_51 ,
s0_ . seoDescription AS seoDescription_52 ,
s0_ . navbar_en AS navbar_en_53 ,
s0_ . teaser_en AS teaser_en_54 ,
s0_ . content_en AS content_en_55 ,
s0_ . content_twig_en AS content_twig_en_56 ,
s0_ . post_cta_content_en AS post_cta_content_en_57 ,
s0_ . seo_title_en AS seo_title_en_58 ,
s0_ . seo_description_en AS seo_description_en_59 ,
s0_ . seo_keyword_en AS seo_keyword_en_60 ,
s0_ . has_english_version AS has_english_version_61 ,
s0_ . additional_js AS additional_js_62 ,
s0_ . metaPixelId AS metaPixelId_63 ,
s0_ . createDate AS createDate_64 ,
s0_ . lastChangeDate AS lastChangeDate_65 ,
s0_ . lastChangeUser AS lastChangeUser_66 ,
s0_ . publicId AS publicId_67 ,
s0_ . isExternalSubmission AS isExternalSubmission_68 ,
s0_ . createdBy AS createdBy_69 ,
s0_ . lastModified AS lastModified_70 ,
s0_ . createdAt AS createdAt_71 ,
s0_ . orgaNote AS orgaNote_72 ,
s0_ . history AS history_73 ,
s0_ . todoHistory AS todoHistory_74
FROM
sp_event_events s0_
WHERE
s0_ . startDate > = ?
AND s0_ . status = 'publish'
AND s0_ . status = 'publish'
ORDER BY
s0_ . startDate ASC
LIMIT
100
Copy
SELECT s0_ . id AS id_0 , s0_ . eventbriteId AS eventbriteId_1 , s0_ . wpPostId AS wpPostId_2 , s0_ . title AS title_3 , s0_ . slug AS slug_4 , s0_ . lang AS lang_5 , s0_ . imagelink AS imagelink_6 , s0_ . videolink AS videolink_7 , s0_ . bgImagelink AS bgImagelink_8 , s0_ . tagline AS tagline_9 , s0_ . headerTextColor AS headerTextColor_10 , s0_ . spResponsiblePerson AS spResponsiblePerson_11 , s0_ . organization AS organization_12 , s0_ . organizerName AS organizerName_13 , s0_ . organizerEmail AS organizerEmail_14 , s0_ . venueName AS venueName_15 , s0_ . venueAddress AS venueAddress_16 , s0_ . ticketing AS ticketing_17 , s0_ . applicationUrl AS applicationUrl_18 , s0_ . alert AS alert_19 , s0_ . trainer AS trainer_20 , s0_ . speakers AS speakers_21 , s0_ . teaser AS teaser_22 , s0_ . navbar AS navbar_23 , s0_ . stripePriceId AS stripePriceId_24 , s0_ . stripeProductId AS stripeProductId_25 , s0_ . stripeAccount AS stripeAccount_26 , s0_ . priceInEuroCent AS priceInEuroCent_27 , s0_ . isTaxIncluded AS isTaxIncluded_28 , s0_ . isFreeForKiCampus AS isFreeForKiCampus_29 , s0_ . isFreeForCommunity AS isFreeForCommunity_30 , s0_ . isSinglePage AS isSinglePage_31 , s0_ . isFormalLanguage AS isFormalLanguage_32 , s0_ . isMultiBatchEvent AS isMultiBatchEvent_33 , s0_ . twigFile AS twigFile_34 , s0_ . additionalCss AS additionalCss_35 , s0_ . content AS content_36 , s0_ . contentTwig AS contentTwig_37 , s0_ . ctaContent AS ctaContent_38 , s0_ . postCtaContent AS postCtaContent_39 , s0_ . tags AS tags_40 , s0_ . seriesTag AS seriesTag_41 , s0_ . type AS type_42 , s0_ . location AS location_43 , s0_ . startDate AS startDate_44 , s0_ . endDate AS endDate_45 , s0_ . duration AS duration_46 , s0_ . status AS status_47 , s0_ . settings AS settings_48 , s0_ . displayStartDate AS displayStartDate_49 , s0_ . seoTitle AS seoTitle_50 , s0_ . seoKeyword AS seoKeyword_51 , s0_ . seoDescription AS seoDescription_52 , s0_ . navbar_en AS navbar_en_53 , s0_ . teaser_en AS teaser_en_54 , s0_ . content_en AS content_en_55 , s0_ . content_twig_en AS content_twig_en_56 , s0_ . post_cta_content_en AS post_cta_content_en_57 , s0_ . seo_title_en AS seo_title_en_58 , s0_ . seo_description_en AS seo_description_en_59 , s0_ . seo_keyword_en AS seo_keyword_en_60 , s0_ . has_english_version AS has_english_version_61 , s0_ . additional_js AS additional_js_62 , s0_ . metaPixelId AS metaPixelId_63 , s0_ . createDate AS createDate_64 , s0_ . lastChangeDate AS lastChangeDate_65 , s0_ . lastChangeUser AS lastChangeUser_66 , s0_ . publicId AS publicId_67 , s0_ . isExternalSubmission AS isExternalSubmission_68 , s0_ . createdBy AS createdBy_69 , s0_ . lastModified AS lastModified_70 , s0_ . createdAt AS createdAt_71 , s0_ . orgaNote AS orgaNote_72 , s0_ . history AS history_73 , s0_ . todoHistory AS todoHistory_74 FROM sp_event_events s0_ WHERE s0_ . startDate > = '2026-02-27' AND s0_ . status = 'publish' AND s0_ . status = 'publish' ORDER BY s0_ . startDate ASC LIMIT 100 ;
Copy